1 25 26 package org.objectweb.easybeans.rpc.api; 27 28 import java.io.Serializable ; 29 30 34 public interface EJBResponse extends Serializable { 35 36 39 Object getValue(); 40 41 45 void setValue(Object o); 46 47 48 51 Long getBeanId(); 52 53 57 void setBeanId(Long beanId); 58 59 60 63 boolean isRemoved(); 64 65 69 void setRemoved(boolean removed); 70 71 72 75 RPCException getRPCException(); 76 77 78 82 void setRPCException(RPCException rpcException); 83 } 84 | Popular Tags |