public interface AppStartUp
extends javax.ejb.EJBObject
The methods should be set up to run as a role if security is enabled and the methods can use any TX_ mode except TX_MANDATORY.
AppStartUpHomeboolean start()
throws java.rmi.RemoteException
This method cannot be declared with TX_MANDATORY as there will never be an incoming transaction when the start method is called. A runtime exception will result if TX_MANDATORY is used.
java.rmi.RemoteExceptionvoid stop()
throws java.rmi.RemoteException
This method cannot be declared with TX_MANDATORY as there will never be an incoming transaction when the start method is called. A runtime exception will result if TX_MANDATORY is used.
java.rmi.RemoteException