| javax.ejb.EJBHome
getEJBMetaData | EJBMetaData getEJBMetaData() throws RemoteException(Code) | | Obtain the EJBMetaData interface for the enterprise Bean. The EJBMetaData
interface allows the client to obtain information about the enterprise
Bean.
The information obtainable via the EJBMetaData interface is intended to
be used by tools.
The enterprise Bean's EJBMetaData interface. throws: RemoteException - Thrown when the method failed due to asystem-level failure. |
getHomeHandle | HomeHandle getHomeHandle() throws RemoteException(Code) | | Obtain a handle for the remote home object. The handle can be used at
later time to re-obtain a reference to the remote home object, possibly
in a different Java Virtual Machine.
A handle for the remote home object. throws: RemoteException - Thrown when the method failed due to asystem-level failure. |
remove | void remove(Handle handle) throws RemoteException, RemoveException(Code) | | Remove an EJB object identified by its handle.
Parameters: handle - the given handle throws: RemoteException - Thrown when the method failed due to asystem-level failure. throws: RemoveException - Thrown if the enterprise Bean or the containerdoes not allow the client to remove the object. |
remove | void remove(Object primaryKey) throws RemoteException, RemoveException(Code) | | Remove an EJB object identified by its primary key.
Parameters: primaryKey - the given primary key; throws: RemoteException - Thrown when the method failed due to asystem-level failure. throws: RemoveException - Thrown if the enterprise Bean or the containerdoes not allow the client to remove the object. |
|
|