- AccessLocalException - Exception in javax.ejb
-
An AccessLocalException is thrown to indicate that the caller does not
have permission to call the method.
- AccessLocalException() - Constructor for exception javax.ejb.AccessLocalException
-
Constructs an AccessLocalException with no detail message.
- AccessLocalException(String) - Constructor for exception javax.ejb.AccessLocalException
-
Constructs an AccessLocalException with the specified detail message.
- AccessLocalException(String, Exception) - Constructor for exception javax.ejb.AccessLocalException
-
Constructs an AccessLocalException with the specified detail message and a nested exception.
- AccessTimeout - Annotation Type in javax.ejb
-
Specifies the amount of time in a given time unit that a concurrent access
attempt on a Singleton session bean should block before timing out.
- ActivationConfigProperty - Annotation Type in javax.ejb
-
Annotation for adding properties to messaging bean annotations (i.e.
- AfterBegin - Annotation Type in javax.ejb
-
Designate a stateful session bean method to receive the AfterBegin
Session Synchronization callback.
- afterBegin() - Method in interface javax.ejb.SessionSynchronization
-
The afterBegin method notifies a session Bean instance that a new transaction has started, and that
the subsequent business methods on the instance will be invoked in the context of the transaction.
- AfterCompletion - Annotation Type in javax.ejb
-
Designate a stateful session bean method to receive the AfterCompletion
Session Synchronization callback.
- afterCompletion(boolean) - Method in interface javax.ejb.SessionSynchronization
-
The afterCompletion method notifies a session Bean instance that a transaction commit protocol has
completed, and tells the instance whether the transaction has been committed or rolled back.
- APP_NAME - Static variable in class javax.ejb.embeddable.EJBContainer
-
- ApplicationException - Annotation Type in javax.ejb
-
Annotation for identifying an Exception class as an Application Exception, which does not cause
a transaction rollback
- Asynchronous - Annotation Type in javax.ejb
-
Used to mark a method as an asynchronous method or to designate all
business methods of a class or interface as asynchronous.
- AsyncResult<V> - Class in javax.ejb
-
Wraps the result of an asynchronous method call as a Future object
preserving compatibility with the business interface signature.
- AsyncResult(V) - Constructor for class javax.ejb.AsyncResult
-
- cancel(boolean) - Method in class javax.ejb.AsyncResult
-
- cancel() - Method in interface javax.ejb.Timer
-
Cause the timer and all its associated expiration notifications to be canceled.
- close() - Method in class javax.ejb.embeddable.EJBContainer
-
Shutdown an embeddable EJBContainer instance.
- ConcurrencyManagement - Annotation Type in javax.ejb
-
Declares a Singleton bean's concurrency management type.
- ConcurrencyManagementType - Enum in javax.ejb
-
Concurrency management type for a singleton or stateful session bean.
- ConcurrentAccessException - Exception in javax.ejb
-
A ConcurrentAccessException indicates that the client has attempted an invocation on a
stateful session bean while another invocation is in progress.
- ConcurrentAccessException() - Constructor for exception javax.ejb.ConcurrentAccessException
-
- ConcurrentAccessException(String) - Constructor for exception javax.ejb.ConcurrentAccessException
-
- ConcurrentAccessException(String, Exception) - Constructor for exception javax.ejb.ConcurrentAccessException
-
- ConcurrentAccessTimeoutException - Exception in javax.ejb
-
This exception indicates that an attempt to concurrently
access a bean method resulted in a timeout.
- ConcurrentAccessTimeoutException() - Constructor for exception javax.ejb.ConcurrentAccessTimeoutException
-
- ConcurrentAccessTimeoutException(String) - Constructor for exception javax.ejb.ConcurrentAccessTimeoutException
-
- createCalendarTimer(ScheduleExpression) - Method in interface javax.ejb.TimerService
-
Create a calendar-based timer based on the input schedule expression.
- createCalendarTimer(ScheduleExpression, TimerConfig) - Method in interface javax.ejb.TimerService
-
Create a calendar-based timer based on the input schedule expression.
- createEJBContainer() - Static method in class javax.ejb.embeddable.EJBContainer
-
Create and initialize an embeddable EJB container.
- createEJBContainer(Map<?, ?>) - Static method in class javax.ejb.embeddable.EJBContainer
-
Create and initialize an embeddable EJB container with an
set of configuration properties and names of modules to be initialized.
- createEJBContainer(Map<?, ?>) - Method in interface javax.ejb.spi.EJBContainerProvider
-
Called by the embeddable container bootstrap process to find a suitable embeddable container
implementation.
- CreateException - Exception in javax.ejb
-
The CreateException exception must be included in the throws clauses of
all create(...) methods define in an enterprise Bean's remote interface.
- CreateException() - Constructor for exception javax.ejb.CreateException
-
Constructs an CreateException with no detail message.
- CreateException(String) - Constructor for exception javax.ejb.CreateException
-
Constructs an CreateException with the specified detail message.
- createIntervalTimer(Date, long, TimerConfig) - Method in interface javax.ejb.TimerService
-
Create an interval timer whose first expiration occurs at a given point in time and
whose subsequent expirations occur after a specified interval.
- createIntervalTimer(long, long, TimerConfig) - Method in interface javax.ejb.TimerService
-
Create an interval timer whose first expiration occurs after a specified duration,
and whose subsequent expirations occur after a specified interval.
- createSingleActionTimer(Date, TimerConfig) - Method in interface javax.ejb.TimerService
-
Create a single-action timer that expires at a given point in time.
- createSingleActionTimer(long, TimerConfig) - Method in interface javax.ejb.TimerService
-
Create a single-action timer that expires after a specified duration.
- createTimer(long, Serializable) - Method in interface javax.ejb.TimerService
-
Create a single-action timer that expires after a specified duration.
- createTimer(long, long, Serializable) - Method in interface javax.ejb.TimerService
-
Create an interval timer whose first expiration occurs after a specified duration,
and whose subsequent expirations occur after a specified interval.
- createTimer(Date, Serializable) - Method in interface javax.ejb.TimerService
-
Create a single-action timer that expires at a given point in time.
- createTimer(Date, long, Serializable) - Method in interface javax.ejb.TimerService
-
Create an interval timer whose first expiration occurs at a given point in time and
whose subsequent expirations occur after a specified interval.
- EJB - Annotation Type in javax.ejb
-
The EJB annotation denotes a reference to an EJB 3.0 session bean.
- EJBAccessException - Exception in javax.ejb
-
An AccessLocalException is thrown to indicate that the caller does not
have permission to call the method.
- EJBAccessException() - Constructor for exception javax.ejb.EJBAccessException
-
Constructs an AccessLocalException with no detail message.
- EJBAccessException(String) - Constructor for exception javax.ejb.EJBAccessException
-
Constructs an AccessLocalException with the specified detail message.
- ejbActivate() - Method in interface javax.ejb.EntityBean
-
A container invokes this method when the instance is taken out of the pool of available
instances to become associated with a specific EJB object.
- ejbActivate() - Method in interface javax.ejb.SessionBean
-
The activate method is called when the instance is activated from its "passive" state.
- EJBContainer - Class in javax.ejb.embeddable
-
Used to execute an EJB application in an embeddable container.
- EJBContainer() - Constructor for class javax.ejb.embeddable.EJBContainer
-
- EJBContainerProvider - Interface in javax.ejb.spi
-
The EJBContainerProvider SPI is used by the embeddable container bootstrap class to
initialize a suitable embeddable container.
- EJBContext - Interface in javax.ejb
-
The EJBContext interface provides an instance with access to the
container-provided runtime context of an enterprise Bean instance.
- EJBException - Exception in javax.ejb
-
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.
- EJBException() - Constructor for exception javax.ejb.EJBException
-
Constructs an EJBException with no detail message.
- EJBException(String) - Constructor for exception javax.ejb.EJBException
-
Constructs an EJBException with the specified detailed message.
- EJBException(Exception) - Constructor for exception javax.ejb.EJBException
-
Constructs an EJBException that embeds the originally thrown exception.
- EJBException(String, Exception) - Constructor for exception javax.ejb.EJBException
-
Constructs an EJBException with the specified message and the
originally throw exception.
- EJBHome - Interface in javax.ejb
-
The EJBHome interface must be extended by all enterprise Beans' remote home interfaces.
- ejbLoad() - Method in interface javax.ejb.EntityBean
-
A container invokes this method to instruct the instance to synchronize its state by loading
it state from the underlying database.
- EJBLocalHome - Interface in javax.ejb
-
The EJBLocalHome interface must be extended by all enterprise Beans'
local home interfaces.
- EJBLocalObject - Interface in javax.ejb
-
The EJBLocalObject interface must be extended by all enterprise
Beans' local interfaces.
- EJBMetaData - Interface in javax.ejb
-
The EJBMetaData interface allows a client to obtain the enterprise
Bean's meta-data information.
- EJBObject - Interface in javax.ejb
-
The EJBObject interface is extended by all enterprise Bean's remote
interface.
- ejbPassivate() - Method in interface javax.ejb.EntityBean
-
A container invokes this method on an instance before the instance becomes disassociated with
a specific EJB object.
- ejbPassivate() - Method in interface javax.ejb.SessionBean
-
The passivate method is called before the instance enters the "passive" state.
- ejbRemove() - Method in interface javax.ejb.EntityBean
-
A container invokes this method before it removes the EJB object that is currently associated
with the instance.
- ejbRemove() - Method in interface javax.ejb.MessageDrivenBean
-
A container invokes this method before it ends the life of the message-driven object.
- ejbRemove() - Method in interface javax.ejb.SessionBean
-
A container invokes this method before it ends the life of the session object.
- EJBs - Annotation Type in javax.ejb
-
The EJBs annotation is used to specify multiple EJB 3.0 session bean
references on a bean class.
- ejbStore() - Method in interface javax.ejb.EntityBean
-
A container invokes this method to instruct the instance to synchronize its state by storing it to
the underlying database.
- ejbTimeout(Timer) - Method in interface javax.ejb.TimedObject
-
Invoked by the EJB container upon timer expiration.
- EJBTransactionRequiredException - Exception in javax.ejb
-
This exception indicates that a request carried a null transaction context,
but the target object requires an activate transaction.
- EJBTransactionRequiredException() - Constructor for exception javax.ejb.EJBTransactionRequiredException
-
Constructs a TransactionRequiredLocalException with no detail message.
- EJBTransactionRequiredException(String) - Constructor for exception javax.ejb.EJBTransactionRequiredException
-
Constructs a TransactionRequiredLocalException with the specified detailed message.
- EJBTransactionRolledbackException - Exception in javax.ejb
-
This exception indicates that the transaction associated with processing
of the request has been rolled back, or marked to roll back.
- EJBTransactionRolledbackException() - Constructor for exception javax.ejb.EJBTransactionRolledbackException
-
Constructs a TransactionRolledbackLocalException with no detail message.
- EJBTransactionRolledbackException(String) - Constructor for exception javax.ejb.EJBTransactionRolledbackException
-
Constructs a TransactionRolledbackLocalException with the specified detailed message.
- EJBTransactionRolledbackException(String, Exception) - Constructor for exception javax.ejb.EJBTransactionRolledbackException
-
Constructs a TransactionRolledbackLocalException with the specified detail
message and a nested exception.
- end(Date) - Method in class javax.ejb.ScheduleExpression
-
- EnterpriseBean - Interface in javax.ejb
-
The EnterpriseBean interface must be implemented by every enterprise Bean class.
- EntityBean - Interface in javax.ejb
-
The EntityBean interface is implemented by every entity enterprise
Bean class.
- EntityContext - Interface in javax.ejb
-
The EntityContext interface provides an instance with access to
the container-provided runtime context of an entity enterprise Bean
instance.
- get() - Method in class javax.ejb.AsyncResult
-
- get(long, TimeUnit) - Method in class javax.ejb.AsyncResult
-
- getBusinessObject(Class<T>) - Method in interface javax.ejb.SessionContext
-
Returns the session bean�s business interface.
- getCallerIdentity() - Method in interface javax.ejb.EJBContext
-
Deprecated. Use Principal getCallerPrincipal() instead.
- getCallerPrincipal() - Method in interface javax.ejb.EJBContext
-
Obtains the java.security.Principal of the caller.
- getCausedByException() - Method in exception javax.ejb.EJBException
-
Obtain the exception that caused the EJBException being thrown.
- getContext() - Method in class javax.ejb.embeddable.EJBContainer
-
Retrieve a naming context for looking up references to session beans executing in
the embeddable container.
- getContextData() - Method in interface javax.ejb.EJBContext
-
Returns the context data associated with this invocation or lifecycle callback.
- getDayOfMonth() - Method in class javax.ejb.ScheduleExpression
-
- getDayOfWeek() - Method in class javax.ejb.ScheduleExpression
-
- getEJBHome() - Method in interface javax.ejb.EJBContext
-
Obtain the enterprise bean's remote home interface.
- getEJBHome() - Method in interface javax.ejb.EJBMetaData
-
Obtains the home interface of the enterprise Bean.
- getEJBHome() - Method in interface javax.ejb.EJBObject
-
Obtain the enterprise Bean's remote home interface.
- getEJBHome() - Method in interface javax.ejb.HomeHandle
-
Obtains the home object represented by this handle.
- getEJBLocalHome() - Method in interface javax.ejb.EJBContext
-
Obtain the enterprise bean's local home interface.
- getEJBLocalHome() - Method in interface javax.ejb.EJBLocalObject
-
Obtain the enterprise Bean's local home interface.
- getEJBLocalObject() - Method in interface javax.ejb.EntityContext
-
Obtain a reference to the EJB local object that is currently associated with the instance.
- getEJBLocalObject() - Method in interface javax.ejb.SessionContext
-
Obtain a reference to the EJB local object that is currently associated with the instance.
- getEJBMetaData() - Method in interface javax.ejb.EJBHome
-
Obtain the EJBMetaData interface for the enterprise Bean.
- getEJBObject() - Method in interface javax.ejb.EntityContext
-
Obtain a reference to the EJB object that is currently associated with the instance.
- getEJBObject() - Method in interface javax.ejb.Handle
-
Obtains the EJB object reference represented by this handle.
- getEJBObject() - Method in interface javax.ejb.SessionContext
-
Obtain a reference to the EJB object that is currently associated with the instance.
- getEnd() - Method in class javax.ejb.ScheduleExpression
-
- getEnvironment() - Method in interface javax.ejb.EJBContext
-
Deprecated. Use the JNDI naming context java:comp/env to access enterprise bean's environment.
- getHandle() - Method in interface javax.ejb.EJBObject
-
Obtain a handle for the EJB object.
- getHandle() - Method in interface javax.ejb.Timer
-
Get a serializable handle to the timer.
- getHomeHandle() - Method in interface javax.ejb.EJBHome
-
Obtain a handle for the remote home object.
- getHomeInterfaceClass() - Method in interface javax.ejb.EJBMetaData
-
Obtains the Class object for the enterprise Bean's home interface.
- getHour() - Method in class javax.ejb.ScheduleExpression
-
- getInfo() - Method in interface javax.ejb.Timer
-
Get the information associated with the timer at the time of creation.
- getInfo() - Method in class javax.ejb.TimerConfig
-
- getInvokedBusinessInterface() - Method in interface javax.ejb.SessionContext
-
Returns the session bean business interface through which the bean was invoked.
- getMessageContext() - Method in interface javax.ejb.SessionContext
-
Obtain a reference to the JAX-RPC MessageContext.
- getMinute() - Method in class javax.ejb.ScheduleExpression
-
- getMonth() - Method in class javax.ejb.ScheduleExpression
-
- getNextTimeout() - Method in interface javax.ejb.Timer
-
Get the point in time at which the next timer expiration is scheduled to occur.
- getPrimaryKey() - Method in interface javax.ejb.EJBLocalObject
-
Obtain the primary key of the EJB local object.
- getPrimaryKey() - Method in interface javax.ejb.EJBObject
-
Obtain the primary key of the EJB object.
- getPrimaryKey() - Method in interface javax.ejb.EntityContext
-
Obtain the primary key of the EJB object that is currently associated with this instance.
- getPrimaryKeyClass() - Method in interface javax.ejb.EJBMetaData
-
Obtains the Class object for the enterprise Bean's primary key class.
- getRemoteInterfaceClass() - Method in interface javax.ejb.EJBMetaData
-
Obtains the Class object for the enterprise Bean's remote interface.
- getRollbackOnly() - Method in interface javax.ejb.EJBContext
-
Test if the transaction has been marked for rollback only.
- getSchedule() - Method in interface javax.ejb.Timer
-
Get the schedule expression corresponding to this timer.
- getSecond() - Method in class javax.ejb.ScheduleExpression
-
- getStart() - Method in class javax.ejb.ScheduleExpression
-
- getTimer() - Method in interface javax.ejb.TimerHandle
-
Obtain a reference to the timer represented by this handle.
- getTimeRemaining() - Method in interface javax.ejb.Timer
-
Get the number of milliseconds that will elapse before the next scheduled timer expiration.
- getTimers() - Method in interface javax.ejb.TimerService
-
Get all the active timers associated with this bean.
- getTimerService() - Method in interface javax.ejb.EJBContext
-
Get access to the EJB Timer Service.
- getTimezone() - Method in class javax.ejb.ScheduleExpression
-
- getUserTransaction() - Method in interface javax.ejb.EJBContext
-
Obtain the transaction demarcation interface.
- getYear() - Method in class javax.ejb.ScheduleExpression
-
- NoMoreTimeoutsException - Exception in javax.ejb
-
This exception indicates that a calendar-based timer will not result in any more timeouts.
- NoMoreTimeoutsException() - Constructor for exception javax.ejb.NoMoreTimeoutsException
-
- NoMoreTimeoutsException(String) - Constructor for exception javax.ejb.NoMoreTimeoutsException
-
- NoSuchEJBException - Exception in javax.ejb
-
A NoSuchEJBException is thrown if an attempt is made to invoke
a method on an object that no longer exists.
- NoSuchEJBException() - Constructor for exception javax.ejb.NoSuchEJBException
-
Constructs a NoSuchEJBException with no detail message.
- NoSuchEJBException(String) - Constructor for exception javax.ejb.NoSuchEJBException
-
Constructs a NoSuchEJBException with the specified detailed message.
- NoSuchEJBException(String, Exception) - Constructor for exception javax.ejb.NoSuchEJBException
-
Constructs a NoSuchEJBException with the specified detail message and a
nested exception.
- NoSuchEntityException - Exception in javax.ejb
-
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.
- NoSuchEntityException() - Constructor for exception javax.ejb.NoSuchEntityException
-
Constructs a NoSuchEntityException with no detail message.
- NoSuchEntityException(String) - Constructor for exception javax.ejb.NoSuchEntityException
-
Constructs a NoSuchEntityException with the specified detailed message.
- NoSuchEntityException(Exception) - Constructor for exception javax.ejb.NoSuchEntityException
-
Constructs a NoSuchEntityException that embeds the originally thrown exception.
- NoSuchObjectLocalException - Exception in javax.ejb
-
A NoSuchObjectLocalException is thrown if an attempt is made to invoke
a method on an object that no longer exists.
- NoSuchObjectLocalException() - Constructor for exception javax.ejb.NoSuchObjectLocalException
-
Constructs a NoSuchObjectLocalException with no detail message.
- NoSuchObjectLocalException(String) - Constructor for exception javax.ejb.NoSuchObjectLocalException
-
Constructs a NoSuchObjectLocalException with the specified detailed message.
- NoSuchObjectLocalException(String, Exception) - Constructor for exception javax.ejb.NoSuchObjectLocalException
-
Constructs a NoSuchObjectLocalException with the specified detail message and a
nested exception.
- readEJBHome(ObjectInputStream) - Method in interface javax.ejb.spi.HandleDelegate
-
Deserialize the EJBHome reference corresponding to a HomeHandle.
- readEJBObject(ObjectInputStream) - Method in interface javax.ejb.spi.HandleDelegate
-
Deserialize the EJBObject reference corresponding to a Handle.
- Remote - Annotation Type in javax.ejb
-
Bean class annotation that specifies remote interfaces of the Session bean.
- RemoteHome - Annotation Type in javax.ejb
-
Annotation for specifying the remote home interface for a bean
- remove(Handle) - Method in interface javax.ejb.EJBHome
-
Remove an EJB object identified by its handle.
- remove(Object) - Method in interface javax.ejb.EJBHome
-
Remove an EJB object identified by its primary key.
- remove(Object) - Method in interface javax.ejb.EJBLocalHome
-
Remove an EJB object identified by its primary key.
- remove() - Method in interface javax.ejb.EJBLocalObject
-
Remove the EJB local object.
- remove() - Method in interface javax.ejb.EJBObject
-
Remove the EJB object.
- Remove - Annotation Type in javax.ejb
-
Annotation to mark a method that will remove a stateful session on completion
- RemoveException - Exception in javax.ejb
-
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.
- RemoveException() - Constructor for exception javax.ejb.RemoveException
-
Constructs an RemoveException with no detail message.
- RemoveException(String) - Constructor for exception javax.ejb.RemoveException
-
Constructs an RemoveException with the specified detail message.
- Schedule - Annotation Type in javax.ejb
-
Schedule a timer for automatic creation with a timeout schedule
based on a cron-like time expression.
- ScheduleExpression - Class in javax.ejb
-
A calendar-based timeout expression for an enterprise bean timer.
- ScheduleExpression() - Constructor for class javax.ejb.ScheduleExpression
-
- Schedules - Annotation Type in javax.ejb
-
Schedules multiple timers that use the same method as the timeout callback method.
- second(int) - Method in class javax.ejb.ScheduleExpression
-
- second(String) - Method in class javax.ejb.ScheduleExpression
-
- SessionBean - Interface in javax.ejb
-
The SessionBean interface is implemented by every session enterprise
Bean class.
- SessionContext - Interface in javax.ejb
-
The SessionContext interface provides access to the runtime session
context that the container provides for a session enterprise Bean
instance.
- SessionSynchronization - Interface in javax.ejb
-
The SessionSynchronization interface allows a session Bean instance
to be notified by its container of transaction boundaries.
- setEntityContext(EntityContext) - Method in interface javax.ejb.EntityBean
-
Set the associated entity context.
- setInfo(Serializable) - Method in class javax.ejb.TimerConfig
-
- setMessageDrivenContext(MessageDrivenContext) - Method in interface javax.ejb.MessageDrivenBean
-
Set the associated message-driven context.
- setPersistent(boolean) - Method in class javax.ejb.TimerConfig
-
- setRollbackOnly() - Method in interface javax.ejb.EJBContext
-
Mark the current transaction for rollback.
- setSessionContext(SessionContext) - Method in interface javax.ejb.SessionBean
-
Set the associated session context.
- Singleton - Annotation Type in javax.ejb
-
Component-defining annotation for a singleton session bean.
- start(Date) - Method in class javax.ejb.ScheduleExpression
-
- Startup - Annotation Type in javax.ejb
-
Mark a Singleton for eager loading during application initialization.
- Stateful - Annotation Type in javax.ejb
-
A stateful session bean must be annotated with the Stateful annotation or
denoted in the deployment descriptor as a stateful session bean.
- StatefulTimeout - Annotation Type in javax.ejb
-
Specifies the amount of time a stateful session bean can be idle
( not receive any client invocations ) before it is eligible
for removal by the container.
- Stateless - Annotation Type in javax.ejb
-
A stateless session bean must be annotated with the Stateless annotation or
denoted in the deployment descriptor as a stateless session bean.
- TimedObject - Interface in javax.ejb
-
The TimedObject interface contains the callback method that is used
to deliver timer expiration notifications.
- Timeout - Annotation Type in javax.ejb
-
Marks an ejbTimeout callback method:
public void (Timer timer)
- Timer - Interface in javax.ejb
-
The Timer interface contains information about a timer that was created
through the EJB Timer Service
- TimerConfig - Class in javax.ejb
-
TimerConfig is used to specify additional timer configuration settings during timer creation.
- TimerConfig() - Constructor for class javax.ejb.TimerConfig
-
- TimerConfig(Serializable, boolean) - Constructor for class javax.ejb.TimerConfig
-
- TimerHandle - Interface in javax.ejb
-
The TimerHandle interface is implemented by all EJB timer handles.
- TimerService - Interface in javax.ejb
-
The TimerService interface provides enterprise bean components with access to the
container-provided Timer Service.
- timezone(String) - Method in class javax.ejb.ScheduleExpression
-
- toString() - Method in class javax.ejb.ScheduleExpression
-
- TransactionAttribute - Annotation Type in javax.ejb
-
The TransactionManagement annotation specifies the transaction management
demarcation type of a session bean or message-driven bean.
- TransactionAttributeType - Enum in javax.ejb
-
Enum for the types of TransactionAttributes
- TransactionManagement - Annotation Type in javax.ejb
-
The TransactionManagement annotation specifies the transaction management
demarcation type of a session bean or message-driven bean.
- TransactionManagementType - Enum in javax.ejb
-
Enums for the TransactionManagement types
- TransactionRequiredLocalException - Exception in javax.ejb
-
This exception indicates that a request carried a null transaction context,
but the target object requires an activate transaction.
- TransactionRequiredLocalException() - Constructor for exception javax.ejb.TransactionRequiredLocalException
-
Constructs a TransactionRequiredLocalException with no detail message.
- TransactionRequiredLocalException(String) - Constructor for exception javax.ejb.TransactionRequiredLocalException
-
Constructs a TransactionRequiredLocalException with the specified detailed message.
- TransactionRolledbackLocalException - Exception in javax.ejb
-
This exception indicates that the transaction associated with processing
of the request has been rolled back, or marked to roll back.
- TransactionRolledbackLocalException() - Constructor for exception javax.ejb.TransactionRolledbackLocalException
-
Constructs a TransactionRolledbackLocalException with no detail message.
- TransactionRolledbackLocalException(String) - Constructor for exception javax.ejb.TransactionRolledbackLocalException
-
Constructs a TransactionRolledbackLocalException with the specified detailed message.
- TransactionRolledbackLocalException(String, Exception) - Constructor for exception javax.ejb.TransactionRolledbackLocalException
-
Constructs a TransactionRolledbackLocalException with the specified detail
message and a nested exception.