1 23 package org.objectweb.joram.mom.proxies; 24 25 import fr.dyade.aaa.agent.Notification; 26 27 public class SendReplyNot extends Notification { 28 29 private int key; 30 31 private int requestId; 32 33 public SendReplyNot(int key, int requestId) { 34 persistent = false; 35 this.key = key; 36 this.requestId = requestId; 37 } 38 39 public final int getKey() { 40 return key; 41 } 42 43 public final int getRequestId() { 44 return requestId; 45 } 46 47 55 public StringBuffer toString(StringBuffer output) { 56 output.append('('); 57 super.toString(output); 58 output.append(",key=").append(key); 59 output.append(",requestId=").append(requestId); 60 output.append(')'); 61 62 return output; 63 } 64 } 65 | Popular Tags |