1 45 package org.openejb.test.entity.cmp; 46 47 import java.rmi.RemoteException ; 48 49 import org.openejb.test.TestFailureException; 50 51 56 public interface EncCmpObject extends javax.ejb.EJBObject { 57 58 public void lookupEntityBean() throws TestFailureException, RemoteException ; 59 public void lookupStatefulBean() throws TestFailureException, RemoteException ; 60 public void lookupStatelessBean() throws TestFailureException, RemoteException ; 61 62 public void lookupResource() throws TestFailureException, RemoteException ; 63 64 public void lookupStringEntry() throws TestFailureException, RemoteException ; 65 public void lookupDoubleEntry() throws TestFailureException, RemoteException ; 66 public void lookupLongEntry() throws TestFailureException, RemoteException ; 67 public void lookupFloatEntry() throws TestFailureException, RemoteException ; 68 public void lookupIntegerEntry() throws TestFailureException, RemoteException ; 69 public void lookupShortEntry() throws TestFailureException, RemoteException ; 70 public void lookupBooleanEntry() throws TestFailureException, RemoteException ; 71 public void lookupByteEntry() throws TestFailureException, RemoteException ; 72 73 } 74 | Popular Tags |