1 45 package org.openejb.test.entity.bmp; 46 47 import java.rmi.RemoteException ; 48 import java.util.Properties ; 49 50 import org.openejb.test.ApplicationException; 51 import org.openejb.test.object.OperationsPolicy; 52 53 58 public interface BasicBmpObject extends javax.ejb.EJBObject { 59 60 65 public String businessMethod(String text) throws RemoteException ; 66 67 71 public void throwApplicationException() throws RemoteException , ApplicationException; 72 73 80 public void throwSystemException_NullPointer() throws RemoteException ; 81 82 88 public Properties getPermissionsReport() throws RemoteException ; 89 90 97 public OperationsPolicy getAllowedOperationsReport(String methodName) throws RemoteException ; 98 } 99 | Popular Tags |