1 22 package org.jboss.test.lock.interfaces; 23 24 import javax.ejb.*; 25 import java.rmi.*; 26 27 public interface EnterpriseEntity 28 extends EJBObject 29 { 30 void setField(String value) throws RemoteException; 31 32 void setNextEntity(String nextBeanName) throws RemoteException; 33 34 void setAndCopyField(String value) throws RemoteException; 35 36 String getField() throws RemoteException; 37 38 void sleep(long time) throws InterruptedException , RemoteException; 39 } 40 | Popular Tags |