Package javax.ejb

Interface Summary
EJBContext (src) The EJBContext interface provides an instance with access to the container-provided runtime context of an enterprise Bean instance.
EJBHome (src) The EJBHome interface must be extended by all enterprise Beans' remote home interfaces.
EJBLocalHome (src) The EJBLocalHome interface must be extended by all enterprise Beans' local home interfaces.
EJBLocalObject (src) The EJBLocalObject interface must be extended by all enterprise Beans' local interfaces.
EJBMetaData (src) The EJBMetaData interface allows a client to obtain the enterprise Bean's meta-data information.
EJBObject (src) The EJBObject interface is extended by all enterprise Bean's remote interface.
EnterpriseBean (src) The EnterpriseBean interface must be implemented by every enterprise Bean class.
EntityBean (src) The EntityBean interface is implemented by every entity enterprise Bean class.
EntityContext (src) The EntityContext interface provides an instance with access to the container-provided runtime context of an entity enterprise Bean instance.
Handle (src) The Handle interface is implemented by all EJB object handles.
HomeHandle (src) The HomeHandle interface is implemented by all home object handles.
MessageDrivenBean (src) The MessageDrivenBean interface is implemented by every message driven enterprise bean class.
MessageDrivenContext (src) The MessageDrivenContext interface provides an instance with access to the container-provided runtime context of a message-driven enterprise bean instance.
SessionBean (src) The SessionBean interface is implemented by every session enterprise Bean class.
SessionContext (src) The SessionContext interface provides access to the runtime session context that the container provides for a session enterprise Bean instance.
SessionSynchronization (src) The SessionSynchronization interface allows a session Bean instance to be notified by its container of transaction boundaries.
TimedObject (src) The TimedObject interface contains the callback method that is used to deliver timer expiration notifications.
Timer (src) The Timer interface contains information about a timer that was created through the EJB Timer Service
TimerHandle (src) The TimerHandle interface is implemented by all EJB timer handles.
TimerService (src) The TimerService interface provides enterprise bean components with access to the container-provided Timer Service.
 

Exception Summary
AccessLocalException (src) An AccessLocalException is thrown to indicate that the caller does not have permission to call the method.
CreateException (src) The CreateException exception must be included in the throws clauses of all create(...) methods define in an enterprise Bean's remote interface.
DuplicateKeyException (src) The DuplicateKeyException exception is thrown if an entity EJB object cannot be created because an object with the same key already exists.
EJBException (src) The EJBException exception is thrown by an enterprise Bean instance to its container to report that the invoked business method or callback method could not be completed because of an unexpected error (e.g.
FinderException (src) The FinderException exception must be included in the throws clause of every findMETHOD(...) method of an entity Bean's home interface.
NoSuchEntityException (src) The NoSuchEntityException exception is thrown by an Entity Bean instance to its container to report that the invoked business method or callback method could not be completed because of the underlying entity was removed from the database.
NoSuchObjectLocalException (src) A NoSuchObjectLocalException is thrown if an attempt is made to invoke a method on an object that no longer exists.
ObjectNotFoundException (src) The ObjectNotFoundException exception is thrown by a finder method to indicate that the specified EJB object does not exist.
RemoveException (src) The RemoveException exception is thrown at an attempt to remove an EJB object when the enterprise Bean or the container does not allow the EJB object to be removed.
TransactionRequiredLocalException (src) This exception indicates that a request carried a null transaction context, but the target object requires an activate transaction.
TransactionRolledbackLocalException (src) This exception indicates that the transaction associated with processing of the request has been rolled back, or marked to roll back.