1 21 22 package fr.dyade.aaa.agent; 23 24 30 public class UnknownAgent extends Notification { 31 32 static final long serialVersionUID = 3125179672784868254L; 33 34 35 public AgentId agent; 36 37 public Notification not; 38 39 45 public UnknownAgent(AgentId agent, Notification not) { 46 this.agent = agent; 47 this.not = not; 48 } 49 50 58 public StringBuffer toString(StringBuffer output) { 59 output.append('('); 60 super.toString(output); 61 output.append(",agent=").append(agent); 62 output.append(",not=").append(not); 63 output.append(')'); 64 65 return output; 66 } 67 } 68 69 | Popular Tags |