javax.ejb |
The javax.ejb package contains the Enterprise JavaBeans classes
and interfaces that define the contracts between the enterprise bean
and its clients and between the enterprise bean and the EJB container.
|
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. |
ActivationConfigProperty.java | Annotation | |
ApplicationException.java | Annotation | Applied to an exception to denote that it is an application exception
and should be reported to the client directly(i.e., unwrapped). |
ConcurrentAccessException.java | Class | A ConcurrentAccessException indicates that the client
has attempted an invocation on a stateful session bean
while another invocation is in progress. |
CreateException.java | Class | The CreateException exception must be included in the throws clauses of
all create methods defined in an enterprise Bean's home
interface. |
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. |
EJB.java | Annotation | Indicates a dependency on the local or remote view of an Enterprise
Java Bean. |
EJBAccessException.java | Class | This exception indicates that client access to a business
method was denied. |
EJBContext.java | Interface | The EJBContext interface provides an instance with access to the
container-provided runtime context of an enterprise Bean instance. |
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.
The meta-data is intended for development tools used for
building applications that use deployed enterprise Beans, and for clients
using a scripting language to access the enterprise Bean.
Note that the EJBMetaData is not a remote interface. |
EJBObject.java | Interface | The EJBObject interface is extended by all enterprise Beans' remote
interfaces. |
EJBs.java | Annotation | Declares multiple TYPE-level @EJB annotations. |
EJBTransactionRequiredException.java | Class | This exception indicates that a request carried a null transaction context,
but the target object requires an active transaction. |
EJBTransactionRolledbackException.java | Class | This exception indicates that the transaction associated with
processing of the request has been rolled back, or marked to roll
back. |
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 | The FinderException exception must be included in the throws clause
of every findMETHOD(...) method of an entity Bean's home interface. |
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. |
Init.java | Annotation | Designates a method of a session bean that corresponds to the
create method of an adapted Home interface or an adapted Local
Home interface. |
Local.java | Annotation | When used on the bean class, declares the local business interface(s)
for a session bean. |
LocalHome.java | Annotation | Declares the Local Home or adapted Local Home interface
for a session bean. |
MessageDriven.java | Annotation | Component-defining annotation for a message driven bean. |
MessageDrivenBean.java | Interface | The MessageDrivenBean interface is implemented by every message-driven
enterprise Bean class. |
MessageDrivenContext.java | Interface | The MessageDrivenContext interface provides access to the runtime
message-driven context that the container provides for a message-driven
enterprise Bean instance. |
NoSuchEJBException.java | Class | A NoSuchEJBException is thrown if an attempt is made to invoke
a method on an object that no longer exists. |
NoSuchEntityException.java | Class | 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.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. |
PostActivate.java | Annotation | Designates a method to receive a callback after a stateful session
bean has been activated. |
PrePassivate.java | Annotation | Designates a method to receive a callback before a stateful session
bean is passivated. |
Remote.java | Annotation | Declares the remote business interface(s) for a session bean.
When used on an interface, designates that interface as a remote
business interface. |
RemoteHome.java | Annotation | Declares the Remote Home or adapted Remote Home interface
for a session bean. |
Remove.java | Annotation | Applied to a business method of a stateful session bean class. |
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. |
Stateful.java | Annotation | Component-defining annotation for a stateful session bean. |
Stateless.java | Annotation | Component-defining annotation for a stateless session bean. |
TimedObject.java | Interface | The TimedObject interface contains the callback method that
is used to deliver timer expiration notifications. |
Timeout.java | Annotation | Designates a method on a stateless session bean class or
message driven bean class that should receive EJB timer expirations
for that bean. |
Timer.java | Interface | The Timer interface contains information about a timer
that was created through the EJB Timer Service. |
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. |
TransactionAttribute.java | Annotation | When applied at the TYPE-level, designates the default transaction attribute
for all business methods of the session or message driven bean. |
TransactionAttributeType.java | enum | |
TransactionManagement.java | Annotation | Declares whether a session bean or message driven bean has
container managed transactions or bean managed transactions. |
TransactionManagementType.java | enum | |
TransactionRequiredLocalException.java | Class | This exception indicates that a request carried a null transaction context,
but the target object requires an active 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. |