1 24 package org.objectweb.joram.mom.notifications; 25 26 import fr.dyade.aaa.agent.Notification; 27 28 public class QueueClusterNot extends Notification { 29 30 private float rateOfFlow; 31 32 public QueueClusterNot(float rateOfFlow) { 33 this.rateOfFlow = rateOfFlow; 34 } 35 36 public void setRateOfFlow(float rateOfFlow) { 37 this.rateOfFlow = rateOfFlow; 38 } 39 40 public float getRateOfFlow() { 41 return rateOfFlow; 42 } 43 44 52 public StringBuffer toString(StringBuffer output) { 53 output.append('('); 54 super.toString(output); 55 output.append(",rateOfFlow=").append(rateOfFlow); 56 output.append(')'); 57 58 return output; 59 } 60 } 61 | Popular Tags |