| javax.ejb.EJBLocalHome
EJBLocalHome | public interface EJBLocalHome (Code) | | Used by EJB 2.1 for their business local home interface.
See Also: EJB 3.0 specification author: Florent Benoit |
Method Summary | |
void | remove(Object primaryKey) Remove an EJB object identified by its primary key.
This method can only be used by local clients of an entity bean. |
remove | void remove(Object primaryKey) throws RemoveException, EJBException(Code) | | Remove an EJB object identified by its primary key.
This method can only be used by local clients of an entity bean. An
attempt to call this method on a session bean will result in a
RemoveException.
Parameters: primaryKey - the given primary key throws: RemoveException - Thrown if the enterprise Bean or the containerdoes not allow the client to remove the object. throws: EJBException - Thrown when the method failed due to a system-levelfailure. |
|
|