1 7 package org.jboss.test.remoting.performance.synchronous; 8 9 import java.io.Serializable ; 10 11 14 public class Payload implements Serializable  15 { 16 private int callNumber = 0; 17 private Object payload = null; 18 19 public Payload(Object payload) 20 { 21 this.payload = payload; 22 } 23 24 public void setCallNumber(int callNumber) 25 { 26 this.callNumber = callNumber; 27 } 28 29 public int getCallNumber() 30 { 31 return callNumber; 32 } 33 34 public Object getPayload() 35 { 36 return payload; 37 } 38 } | Popular Tags |