1 22 package org.jboss.test.testbean.interfaces; 23 24 import javax.ejb.EJBObject ; 25 import java.rmi.RemoteException ; 26 27 28 29 public interface EntityPK extends EJBObject { 30 31 public AComplexPK readAllValues() throws RemoteException ; 32 public void updateAllValues(AComplexPK aComplexPK) throws RemoteException ; 33 34 public int getOtherField() throws RemoteException ; 35 public void setOtherField(int newValue) throws RemoteException ; 36 37 } 38 | Popular Tags |