1 24 25 26 package fr.dyade.aaa.agent; 27 28 29 37 public class FlowControlNot extends Notification { 38 39 40 41 int driverId; 42 43 47 int driverKey = 0; 48 49 50 55 FlowControlNot(int driverId) { 56 this.driverId = driverId; 57 } 58 59 65 FlowControlNot(int driverId, int driverKey) { 66 this.driverId = driverId; 67 this.driverKey = driverKey; 68 } 69 70 71 72 75 FlowControlNot() { 76 this(0); 77 } 78 79 87 public StringBuffer toString(StringBuffer output) { 88 output.append('('); 89 super.toString(output); 90 output.append(",driverKey=").append(driverKey); 91 output.append(",driverId=").append(driverId); 92 output.append(')'); 93 94 return output; 95 } 96 } 97 | Popular Tags |