com.ibm.websphere.startupservice

Interface AppStartUpHome

All Superinterfaces:
javax.ejb.EJBHome, java.rmi.Remote

  1. public interface AppStartUpHome
  2. extends javax.ejb.EJBHome
Any startup beans must use this interface in their J2EE descriptors. The beans must be session beans which use AppStartUpHome for their home interface and AppStartUp for their remote interface.

The order which the beans are started in can be controlled within a single ejb-jar. The ejb env variable wasStartupPriority which should be an integer can be used to specify an ordering. The default value if this property is not present is 0. Beans are started in ascending order and stopped in descending order.

Startup beans should never be invoked by an application.

See Also:
AppStartUp

Method Summary

Modifier and Type Method and Description
  1. AppStartUp
create()
Methods inherited from interface javax.ejb.EJBHome
getEJBMetaData, getHomeHandle, remove, remove

Method Detail

create

  1. AppStartUp create()
  2. throws javax.ejb.CreateException
  3. java.rmi.RemoteException
Throws:
javax.ejb.CreateException
java.rmi.RemoteException