1 24 package org.objectweb.joram.mom.notifications; 25 26 public class AbortReceiveRequest extends AbstractRequest { 27 28 private int abortedRequestId; 29 30 public AbortReceiveRequest( 31 int clientContext, 32 int requestId, 33 int abortedRequestId) { 34 super(clientContext, requestId); 35 this.abortedRequestId = abortedRequestId; 36 } 37 38 public final int getAbortedRequestId() { 39 return abortedRequestId; 40 } 41 42 50 public StringBuffer toString(StringBuffer output) { 51 output.append('('); 52 super.toString(output); 53 output.append(",abortedRequestId=").append(abortedRequestId); 54 output.append(')'); 55 56 return output; 57 } 58 } 59 | Popular Tags |