- 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 should block before timing out.
- ActivationConfigProperty - Annotation Type in javax.ejb
-
Used to provide information to the deployer about the configuration of
a message driven bean in its operational environment.
- AfterBegin - Annotation Type in javax.ejb
-
Designate a stateful session bean method to receive the after begin
session synchronization callback.
- afterBegin() - Method in interface javax.ejb.SessionSynchronization
-
The afterBegin
method notifies a stateful 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 after completion
session synchronization callback.
- afterCompletion(boolean) - Method in interface javax.ejb.SessionSynchronization
-
The afterCompletion
method notifies a stateful 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
-
Standard property name for specifying the application name of
the EJB modules executing within the embeddable container.
- ApplicationException - Annotation Type in javax.ejb
-
Applied to an exception to denote that it is an application exception
and should be reported to the client directly (i.e., unwrapped).
- AroundInvoke - Annotation Type in javax.interceptor
-
Defines an interceptor method that interposes on business methods.
- AroundTimeout - Annotation Type in javax.interceptor
-
Defines an interceptor method that interposes on timeout methods.
- Asynchronous - Annotation Type in javax.ejb
-
Used to mark a session bean method as an asynchronous method or to designate all
business methods of a session bean class as asynchronous.
- AsyncResult<V> - Class in javax.ejb
-
Wraps the result of an asynchronous method call as a Future
object, preserving compatability with the business interface signature.
- AsyncResult(V) - Constructor for class javax.ejb.AsyncResult
-
Creates a AsyncResult
instance to wrap the result of an
asynchronous method call
- cancel(boolean) - Method in class javax.ejb.AsyncResult
-
This method should not be called.
- cancel() - Method in interface javax.ejb.Timer
-
Cause the timer and all its associated expiration notifications to
be cancelled.
- close() - Method in class javax.ejb.embeddable.EJBContainer
-
Shutdown an embeddable EJBContainer instance.
- ConcurrencyManagement - Annotation Type in javax.ejb
-
Declares a singleton session bean's concurrency management type.
- ConcurrencyManagementType - Enum in javax.ejb
-
Used to specify the value of the ConcurrencyManagement
annotation
for a singleton session bean.
- ConcurrentAccessException - Exception in javax.ejb
-
A ConcurrentAccessException indicates that the client
has attempted an invocation on a stateful session bean or singleton bean
while another invocation is in progress and such concurrent access
is not allowed.
- ConcurrentAccessException() - Constructor for exception javax.ejb.ConcurrentAccessException
-
Constructs an ConcurrentAccessException with no detail message.
- ConcurrentAccessException(String) - Constructor for exception javax.ejb.ConcurrentAccessException
-
Constructs an ConcurrentAccessException with the specified
detailed message.
- ConcurrentAccessException(String, Exception) - Constructor for exception javax.ejb.ConcurrentAccessException
-
Constructs an ConcurrentAccessException with the specified
detail message and a nested exception.
- ConcurrentAccessTimeoutException - Exception in javax.ejb
-
This exception indicates that an attempt to concurrently access
a stateful session or singleton bean method resulted in a timeout.
- ConcurrentAccessTimeoutException() - Constructor for exception javax.ejb.ConcurrentAccessTimeoutException
-
- ConcurrentAccessTimeoutException(String) - Constructor for exception javax.ejb.ConcurrentAccessTimeoutException
-
- containsProperty(String) - Method in interface javax.xml.rpc.handler.MessageContext
-
Returns true if the MessageContext
contains a property
with the specified name.
- 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 a
set of configuration properties.
- 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 defined in an enterprise bean's home or local home
interface.
- CreateException() - Constructor for exception javax.ejb.CreateException
-
Constructs a CreateException with no detail message.
- CreateException(String) - Constructor for exception javax.ejb.CreateException
-
Constructs a CreateException with the specified
detail message.
- 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.
- 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.
- createSingleActionTimer(long, TimerConfig) - Method in interface javax.ejb.TimerService
-
Create a single-action timer that expires after a specified duration.
- createSingleActionTimer(Date, TimerConfig) - Method in interface javax.ejb.TimerService
-
Create a single-action timer that expires at a given point in time.
- 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
-
Indicates a dependency on the local, no-interface, or remote view of an Enterprise
JavaBean.
- EJBAccessException - Exception in javax.ejb
-
This exception indicates that client access to a business
method was denied.
- EJBAccessException() - Constructor for exception javax.ejb.EJBAccessException
-
Constructs an EJBAccessException with no detail message.
- EJBAccessException(String) - Constructor for exception javax.ejb.EJBAccessException
-
Constructs an EJBAccessException with the specified
detailed 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 a stateful session bean 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 is thrown 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 that embeds the originally thrown exception
with the specified detail message.
- 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 beans' remote
interfaces.
- 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 a stateful session bean 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
-
Declares multiple EJB
annotations.
- 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 active transaction.
- EJBTransactionRequiredException() - Constructor for exception javax.ejb.EJBTransactionRequiredException
-
Constructs an EJBTransactionRequiredException with no detail message.
- EJBTransactionRequiredException(String) - Constructor for exception javax.ejb.EJBTransactionRequiredException
-
Constructs an EJBTransactionRequiredException with the specified
detailed message.
- EJBTransactionRolledbackException - Exception in javax.ejb
-
This exception is thrown to a remote client to indicate 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 an EJBTransactionRolledbackException with no detail message.
- EJBTransactionRolledbackException(String) - Constructor for exception javax.ejb.EJBTransactionRolledbackException
-
Constructs an EJBTransactionRolledbackException with the specified
detailed message.
- EJBTransactionRolledbackException(String, Exception) - Constructor for exception javax.ejb.EJBTransactionRolledbackException
-
Constructs an EJBTransactionRolledbackException with the specified
detail message and a nested exception.
- end(Date) - Method in class javax.ejb.ScheduleExpression
-
Set the end date.
- EnterpriseBean - Interface in javax.ejb
-
The EnterpriseBean interface is a common superinterface for the
SessionBean, EntityBean and MessageDrivenBean interfaces.
- EntityBean - Interface in javax.ejb
-
The EntityBean interface is implemented by every entity bean
class.
- EntityContext - Interface in javax.ejb
-
The EntityContext interface provides an instance with access to the
container-provided runtime context of an entity bean instance.
- ExcludeClassInterceptors - Annotation Type in javax.interceptor
-
Used to exclude class-level interceptors for a business method
or timeout method of a target class.
- ExcludeDefaultInterceptors - Annotation Type in javax.interceptor
-
Used to exclude default interceptors for a target class or
for a business method or timeout method of a target class.
- GenericHandler - Class in javax.xml.rpc.handler
-
The javax.xml.rpc.handler.GenericHandler
class
implements the Handler
interface.
- GenericHandler() - Constructor for class javax.xml.rpc.handler.GenericHandler
-
Default constructor
- get() - Method in class javax.ejb.AsyncResult
-
This method should not be called.
- get(long, TimeUnit) - Method in class javax.ejb.AsyncResult
-
This method should not be called.
- getAllTimers() - Method in interface javax.ejb.TimerService
-
Returns all active timers associated with the beans in the same module in
which the caller bean is packaged.
- getBusinessObject(Class<T>) - Method in interface javax.ejb.SessionContext
-
Obtain an object that can be used to invoke the current bean through
a particular business interface view or its no-interface view.
- getCallerIdentity() - Method in interface javax.ejb.EJBContext
-
Deprecated.
Use Principal getCallerPrincipal() instead.
- getCallerPrincipal() - Method in interface javax.ejb.EJBContext
-
Obtain the java.security.Principal
that identifies the caller.
- getCausedByException() - Method in exception javax.ejb.EJBException
-
Obtain the exception that caused the EJBException to be 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
-
The getContextData
method enables a business method, lifecycle
callback method, or timeout method to retrieve any interceptor/webservices context
associated with its invocation.
- getContextData() - Method in interface javax.interceptor.InvocationContext
-
Returns the context data associated with this invocation or
lifecycle callback.
- getDayOfMonth() - Method in class javax.ejb.ScheduleExpression
-
Return the value of the day of the month attribute.
- getDayOfWeek() - Method in class javax.ejb.ScheduleExpression
-
Return the value of the day of the week attribute.
- getEJBHome() - Method in interface javax.ejb.EJBContext
-
Obtain the enterprise bean's remote home interface.
- getEJBHome() - Method in interface javax.ejb.EJBMetaData
-
Obtain the remote 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
-
Obtain 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
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
-
Obtain 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
-
Return the end date, if set; otherwise null.
- 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.
- getHandlerChain(QName) - Method in interface javax.xml.rpc.handler.HandlerRegistry
-
Gets the handler chain for the specified service endpoint.
- getHandlerClass() - Method in class javax.xml.rpc.handler.HandlerInfo
-
Gets the Handler class
- getHandlerConfig() - Method in class javax.xml.rpc.handler.HandlerInfo
-
Gets the Handler configuration
- getHeaders() - Method in class javax.xml.rpc.handler.GenericHandler
-
Gets the header blocks processed by this Handler instance.
- getHeaders() - Method in interface javax.xml.rpc.handler.Handler
-
Gets the header blocks that can be processed by this Handler
instance.
- getHeaders() - Method in class javax.xml.rpc.handler.HandlerInfo
-
Gets the header blocks processed by this Handler.
- getHomeHandle() - Method in interface javax.ejb.EJBHome
-
Obtain a handle for the remote home object.
- getHomeInterfaceClass() - Method in interface javax.ejb.EJBMetaData
-
Obtain the class object for the enterprise bean's remote home interface.
- getHour() - Method in class javax.ejb.ScheduleExpression
-
Return the value of the hour attribute.
- 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
-
Return the info
object made available to timer callbacks.
- getInvokedBusinessInterface() - Method in interface javax.ejb.SessionContext
-
Obtain the business interface or no-interface view type through which the
current business method invocation was made.
- getMessageContext() - Method in interface javax.ejb.SessionContext
-
Obtain a reference to the JAX-RPC MessageContext.
- getMethod() - Method in interface javax.interceptor.InvocationContext
-
Returns the method of the target class for which the interceptor
was invoked.
- getMinute() - Method in class javax.ejb.ScheduleExpression
-
Return the value of the minute attribute.
- getMonth() - Method in class javax.ejb.ScheduleExpression
-
Return the value of the month attribute.
- getNextTimeout() - Method in interface javax.ejb.Timer
-
Get the point in time at which the next timer expiration is scheduled
to occur.
- getParameters() - Method in interface javax.interceptor.InvocationContext
-
Returns the parameter values that will be passed to the method of
the target class.
- 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
-
Obtain the class object for the enterprise bean's primary key class.
- getProperty(String) - Method in interface javax.xml.rpc.handler.MessageContext
-
Gets the value of a specific property from the
MessageContext
- getPropertyNames() - Method in interface javax.xml.rpc.handler.MessageContext
-
Returns an Iterator view of the names of the properties
in this MessageContext
- getRemoteInterfaceClass() - Method in interface javax.ejb.EJBMetaData
-
Obtain the class object for the enterprise bean's remote interface.
- getRoles() - Method in interface javax.xml.rpc.handler.HandlerChain
-
Gets SOAP actor roles registered for this HandlerChain at
this SOAP node.
- 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
-
Return the value of the second attribute.
- getStart() - Method in class javax.ejb.ScheduleExpression
-
Return the start date, if set; otherwise null.
- getTarget() - Method in interface javax.interceptor.InvocationContext
-
Returns the target instance.
- getTimer() - Method in interface javax.ejb.TimerHandle
-
Obtain a reference to the timer represented by this handle.
- getTimer() - Method in interface javax.interceptor.InvocationContext
-
Returns the timer object associated with a timeout
method invocation on the target class, or a null value for method
and lifecycle callback interceptor methods.
- 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
-
Returns all 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
-
Return the timezone, if set; otherwise null.
- getUserTransaction() - Method in interface javax.ejb.EJBContext
-
Obtain the transaction demarcation interface.
- getYear() - Method in class javax.ejb.ScheduleExpression
-
Return the value of the year attribute.
- Handle - Interface in javax.ejb
-
The Handle interface is implemented by all EJB object handles.
- HandleDelegate - Interface in javax.ejb.spi
-
The HandleDelegate
interface is implemented by the EJB container.
- handleFault(MessageContext) - Method in class javax.xml.rpc.handler.GenericHandler
-
The handleFault
method processes the SOAP faults
based on the SOAP message processing model.
- handleFault(MessageContext) - Method in interface javax.xml.rpc.handler.Handler
-
The handleFault
method processes the SOAP faults
based on the SOAP message processing model.
- handleFault(MessageContext) - Method in interface javax.xml.rpc.handler.HandlerChain
-
The handleFault
method initiates the SOAP
fault processing for this handler chain.
- Handler - Interface in javax.xml.rpc.handler
-
The javax.xml.rpc.handler.Handler
interface is
required to be implemented by a SOAP message handler.
- HandlerChain - Interface in javax.xml.rpc.handler
-
The javax.xml.rpc.handler.HandlerChain
represents
a list of handlers.
- handleRequest(MessageContext) - Method in class javax.xml.rpc.handler.GenericHandler
-
The handleRequest
method processes the request
SOAP message.
- handleRequest(MessageContext) - Method in interface javax.xml.rpc.handler.Handler
-
The handleRequest
method processes the request
message.
- handleRequest(MessageContext) - Method in interface javax.xml.rpc.handler.HandlerChain
-
The handleRequest
method initiates the request
processing for this handler chain.
- handleResponse(MessageContext) - Method in class javax.xml.rpc.handler.GenericHandler
-
The handleResponse
method processes the response
message.
- handleResponse(MessageContext) - Method in interface javax.xml.rpc.handler.Handler
-
The handleResponse
method processes the response
SOAP message.
- handleResponse(MessageContext) - Method in interface javax.xml.rpc.handler.HandlerChain
-
The handleResponse
method initiates the response
processing for this handler chain.
- HandlerInfo - Class in javax.xml.rpc.handler
-
The javax.xml.rpc.handler.HandlerInfo
represents
information about a handler in the HandlerChain.
- HandlerInfo() - Constructor for class javax.xml.rpc.handler.HandlerInfo
-
Default constructor
- HandlerInfo(Class, Map, QName[]) - Constructor for class javax.xml.rpc.handler.HandlerInfo
-
Constructor for HandlerInfo
- HandlerRegistry - Interface in javax.xml.rpc.handler
-
The javax.xml.rpc.handler.HandlerRegistry
provides support for the programmatic configuration of
handlers in a HandlerRegistry
.
- HomeHandle - Interface in javax.ejb
-
The HomeHandle interface is implemented by all home object handles.
- hour(String) - Method in class javax.ejb.ScheduleExpression
-
Set the hour attribute.
- hour(int) - Method in class javax.ejb.ScheduleExpression
-
Set the hour attribute.
- IllegalLoopbackException - Exception in javax.ejb
-
This exception indicates that an attempt was made to perform an
illegal loopback invocation.
- IllegalLoopbackException() - Constructor for exception javax.ejb.IllegalLoopbackException
-
- IllegalLoopbackException(String) - Constructor for exception javax.ejb.IllegalLoopbackException
-
- Init - Annotation Type in javax.ejb
-
Designates a method of a session bean that corresponds to a
create<METHOD>
method of an adapted home or
local home interface (an interface that adapts an EJB 2.1 or earlier
EJBHome or EJBLocalHome client view respectively).
- init(HandlerInfo) - Method in class javax.xml.rpc.handler.GenericHandler
-
The init
method to enable the Handler instance to
initialize itself.
- init(HandlerInfo) - Method in interface javax.xml.rpc.handler.Handler
-
The init
method enables the Handler instance to
initialize itself.
- init(Map) - Method in interface javax.xml.rpc.handler.HandlerChain
-
Initializes the configuration for a HandlerChain.
- Interceptor - Annotation Type in javax.interceptor
-
Specifies that a class is an interceptor.
- InterceptorBinding - Annotation Type in javax.interceptor
-
Specifies that an annotation type is an interceptor binding type.
- Interceptors - Annotation Type in javax.interceptor
-
Declares an ordered list of interceptors for a target class or
method of a target class.
- InvocationContext - Interface in javax.interceptor
-
Exposes context information about the intercepted invocation and operations
that enable interceptor methods to control the behavior of the invocation chain.
- isCalendarTimer() - Method in interface javax.ejb.Timer
-
Return whether this timer is a calendar-based timer.
- isCallerInRole(Identity) - Method in interface javax.ejb.EJBContext
-
Deprecated.
Use boolean isCallerInRole(String roleName) instead.
- isCallerInRole(String) - Method in interface javax.ejb.EJBContext
-
Test if the caller has a given security role.
- isCancelled() - Method in class javax.ejb.AsyncResult
-
This method should not be called.
- isDone() - Method in class javax.ejb.AsyncResult
-
This method should not be called.
- isIdentical(EJBLocalObject) - Method in interface javax.ejb.EJBLocalObject
-
Test if a given EJB local object is identical to the invoked EJB
local object.
- isIdentical(EJBObject) - Method in interface javax.ejb.EJBObject
-
Test if a given EJB object is identical to the invoked EJB object.
- isPersistent() - Method in interface javax.ejb.Timer
-
Return whether this timer has persistent semantics.
- isPersistent() - Method in class javax.ejb.TimerConfig
-
Return whether the timer is persistent.
- isSession() - Method in interface javax.ejb.EJBMetaData
-
Test if the enterprise bean's type is "session".
- isStatelessSession() - Method in interface javax.ejb.EJBMetaData
-
Test if the enterprise bean's type is "stateless session".
- 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
-
Create a schedule with the default values.
- Schedules - Annotation Type in javax.ejb
-
Applied to a timer callback method to schedule multiple calendar-based
timers for the method.
- second(String) - Method in class javax.ejb.ScheduleExpression
-
Set the second attribute.
- second(int) - Method in class javax.ejb.ScheduleExpression
-
Set the second attribute.
- SessionBean - Interface in javax.ejb
-
The SessionBean interface defines methods that the EJB container uses
to notify a session bean instance of the instance's life cycle events.
- SessionContext - Interface in javax.ejb
-
The SessionContext interface provides access to the runtime session context
that the container provides for a session bean instance.
- SessionSynchronization - Interface in javax.ejb
-
The SessionSynchronization interface allows a stateful 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.
- setHandlerChain(QName, List) - Method in interface javax.xml.rpc.handler.HandlerRegistry
-
Sets the handler chain for the specified service endpoint
as a java.util.List
.
- setHandlerClass(Class) - Method in class javax.xml.rpc.handler.HandlerInfo
-
Sets the Handler class
- setHandlerConfig(Map) - Method in class javax.xml.rpc.handler.HandlerInfo
-
Sets the Handler configuration as java.util.Map
- setHeaders(QName[]) - Method in class javax.xml.rpc.handler.HandlerInfo
-
Sets the header blocks processed by this Handler.
- setInfo(Serializable) - Method in class javax.ejb.TimerConfig
-
Set the info
object made available to timer callbacks.
- setMessageDrivenContext(MessageDrivenContext) - Method in interface javax.ejb.MessageDrivenBean
-
Set the associated message-driven context.
- setParameters(Object[]) - Method in interface javax.interceptor.InvocationContext
-
Sets the parameter values that will be passed to the method of the
target class.
- setPersistent(boolean) - Method in class javax.ejb.TimerConfig
-
Specify whether the timer is persistent.
- setProperty(String, Object) - Method in interface javax.xml.rpc.handler.MessageContext
-
Sets the name and value of a property associated with the
MessageContext
.
- setRoles(String[]) - Method in interface javax.xml.rpc.handler.HandlerChain
-
Sets SOAP Actor roles for this HandlerChain
.
- 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
-
Set the start date.
- Startup - Annotation Type in javax.ejb
-
Mark a singleton bean for eager initialization during the application startup sequence.
- Stateful - Annotation Type in javax.ejb
-
Component-defining annotation for 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
-
Component-defining annotation for a stateless session bean.
- TimedObject - Interface in javax.ejb
-
The TimedObject
interface contains a callback method
that is used to deliver timer expiration notifications.
- Timeout - Annotation Type in javax.ejb
-
Designates a method on a stateless session bean class, a singleton
session bean class, a message driven bean class, or an EJB 2.x entity bean
class that should receive EJB timer expirations for that bean.
- 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 allows the bean provider to obtain a
serializable timer handle that may be persisted.
- 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
-
Set the timezone.
- toString() - Method in class javax.ejb.ScheduleExpression
-
- toString() - Method in class javax.ejb.TimerConfig
-
- TransactionAttribute - Annotation Type in javax.ejb
-
The TransactionAttribute
annotation specifies whether
the container is to invoke a business method within a transaction
context.
- TransactionAttributeType - Enum in javax.ejb
-
The enum TransactionAttributeType
is used with the
TransactionAttribute
annotation to specify whether the
methods of a session bean or message driven bean are called with a
valid transaction context.
- TransactionManagement - Annotation Type in javax.ejb
-
Specifies whether a session bean or message driven bean has
container managed transactions or bean managed transactions.
- TransactionManagementType - Enum in javax.ejb
-
The enum TransactionManagementType
is used with the
TransactionManagement
annotation to specify whether
container-managed or bean-managed transaction management is used.
- TransactionRequiredLocalException - Exception in javax.ejb
-
This exception is thrown to a local client to indicate that a
request carried a null transaction context, but the target object
requires an active transaction.
- TransactionRequiredLocalException() - Constructor for exception javax.ejb.TransactionRequiredLocalException
-
Constructs a TransactionRequiredLocalException with no detail message.
- TransactionRequiredLocalException(String) - Constructor for exception javax.ejb.TransactionRequiredLocalException
-
Constructs an TransactionRequiredLocalException with the specified
detailed message.
- TransactionRolledbackLocalException - Exception in javax.ejb
-
This exception is thrown to a local client to indicate 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.