javax.ejb |
|
Java Source File Name | Type | Comment |
AccessLocalException.java | Class | An AccessLocalException is thrown to indicate that the caller does not
have permission to call the method. |
CreateException.java | Class | The CreateException exception must be included in the throws clauses of
all create(...) methods define in an enterprise Bean's remote interface.
The exception is used as a standard application-level exception
to report a failure to create an entity EJB object. |
DuplicateKeyException.java | Class | The DuplicateKeyException exception is thrown if an entity EJB
object cannot be created because an object with the same key already
exists. |
EJBContext.java | Interface | |
EJBException.java | Class | 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. |
EJBHome.java | Interface | The EJBHome interface must be extended by all enterprise Beans' remote home interfaces. |
EJBLocalHome.java | Interface | The EJBLocalHome interface must be extended by all enterprise Beans'
local home interfaces. |
EJBLocalObject.java | Interface | The EJBLocalObject interface must be extended by all enterprise
Beans' local interfaces. |
EJBMetaData.java | Interface | The EJBMetaData interface allows a client to obtain the enterprise
Bean's meta-data information. |
EJBObject.java | Interface | The EJBObject interface is extended by all enterprise Bean's remote
interface. |
EnterpriseBean.java | Interface | The EnterpriseBean interface must be implemented by every enterprise Bean class. |
EntityBean.java | Interface | The EntityBean interface is implemented by every entity enterprise
Bean class. |
EntityContext.java | Interface | The EntityContext interface provides an instance with access to
the container-provided runtime context of an entity enterprise Bean
instance. |
FinderException.java | Class | |
Handle.java | Interface | The Handle interface is implemented by all EJB object handles. |
HomeHandle.java | Interface | The HomeHandle interface is implemented by all home object handles. |
MessageDrivenBean.java | Interface | The MessageDrivenBean interface is implemented by every message driven
enterprise bean class. |
MessageDrivenContext.java | Interface | The MessageDrivenContext interface provides an instance with access
to the container-provided runtime context of a message-driven enterprise
bean instance. |
NoSuchEntityException.java | Class | |
NoSuchObjectLocalException.java | Class | A NoSuchObjectLocalException is thrown if an attempt is made to invoke
a method on an object that no longer exists. |
ObjectNotFoundException.java | Class | The ObjectNotFoundException exception is thrown by a finder method
to indicate that the specified EJB object does not exist.
Only the finder methods that are declared to return a single EJB object
use this exception. |
RemoveException.java | Class | 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. |
SessionBean.java | Interface | The SessionBean interface is implemented by every session enterprise
Bean class. |
SessionContext.java | Interface | The SessionContext interface provides access to the runtime session
context that the container provides for a session enterprise Bean
instance. |
SessionSynchronization.java | Interface | The SessionSynchronization interface allows a session Bean instance
to be notified by its container of transaction boundaries.
An session Bean class is not required to implement this interface. |
TimedObject.java | Interface | The TimedObject interface contains the callback method that is used
to deliver timer expiration notifications. |
Timer.java | Interface | |
TimerHandle.java | Interface | The TimerHandle interface is implemented by all EJB timer handles. |
TimerService.java | Interface | The TimerService interface provides enterprise bean components with access to the
container-provided Timer Service. |
TransactionRequiredLocalException.java | Class | This exception indicates that a request carried a null transaction context,
but the target object requires an activate transaction. |
TransactionRolledbackLocalException.java | Class | This exception indicates that the transaction associated with processing
of the request has been rolled back, or marked to roll back. |