Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
A
- AccessLocalException - Exception Class in jakarta.ejb
-
An AccessLocalException is thrown to indicate that the caller does not have permission to call the method.
- AccessLocalException() - Constructor for exception class jakarta.ejb.AccessLocalException
-
Constructs an AccessLocalException with no detail message.
- AccessLocalException(String) - Constructor for exception class jakarta.ejb.AccessLocalException
-
Constructs an AccessLocalException with the specified detail message.
- AccessLocalException(String, Exception) - Constructor for exception class jakarta.ejb.AccessLocalException
-
Constructs an AccessLocalException with the specified detail message and a nested exception.
- AccessTimeout - Annotation Type in jakarta.ejb
-
Specifies the amount of time in a given time unit that a concurrent access attempt should block before timing out.
- activationConfig() - Element in annotation type jakarta.ejb.MessageDriven
-
Activation config properties.
- ActivationConfigProperty - Annotation Type in jakarta.ejb
-
Used to provide information to the deployer about the configuration of a message driven bean in its operational environment.
- afterBegin() - Method in interface jakarta.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. - AfterBegin - Annotation Type in jakarta.ejb
-
Designate a stateful session bean method to receive the after begin session synchronization callback.
- afterCompletion(boolean) - Method in interface jakarta.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. - AfterCompletion - Annotation Type in jakarta.ejb
-
Designate a stateful session bean method to receive the after completion session synchronization callback.
- APP_NAME - Static variable in class jakarta.ejb.embeddable.EJBContainer
-
Standard property name for specifying the application name of the enterprise bean modules executing within the embeddable container.
- ApplicationException - Annotation Type in jakarta.ejb
-
Applied to an exception to denote that it is an application exception and should be reported to the client directly (i.e., unwrapped).
- Asynchronous - Annotation Type in jakarta.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 jakarta.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 jakarta.ejb.AsyncResult
-
Creates a
AsyncResult
instance to wrap the result of an asynchronous method call
B
- BEAN - Enum constant in enum jakarta.ejb.ConcurrencyManagementType
-
Bean developer is responsible for managing concurrent access to the bean instance.
- BEAN - Enum constant in enum jakarta.ejb.TransactionManagementType
-
Bean-managed transaction management is used.
- beanInterface() - Element in annotation type jakarta.ejb.EJB
-
The interface type of the Enterprise Bean to which this reference is mapped.
- beanName() - Element in annotation type jakarta.ejb.EJB
-
The
beanName
element references the value of thename
element of theStateful
orStateless
annotation, whether defaulted or explicit. - beforeCompletion() - Method in interface jakarta.ejb.SessionSynchronization
-
The
beforeCompletion
method notifies a stateful session bean instance that a transaction is about to be committed. - BeforeCompletion - Annotation Type in jakarta.ejb
-
Designate a stateful session bean method to receive the before completion session synchronization callback.
C
- cancel() - Method in interface jakarta.ejb.Timer
-
Cause the timer and all its associated expiration notifications to be cancelled.
- cancel(boolean) - Method in class jakarta.ejb.AsyncResult
-
This method should not be called.
- close() - Method in class jakarta.ejb.embeddable.EJBContainer
-
Shutdown an embeddable EJBContainer instance.
- ConcurrencyManagement - Annotation Type in jakarta.ejb
-
Declares a singleton session bean's concurrency management type.
- ConcurrencyManagementType - Enum in jakarta.ejb
-
Used to specify the value of the
ConcurrencyManagement
annotation for a singleton session bean. - ConcurrencyManagementType() - Constructor for enum jakarta.ejb.ConcurrencyManagementType
- ConcurrentAccessException - Exception Class in jakarta.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 class jakarta.ejb.ConcurrentAccessException
-
Constructs an ConcurrentAccessException with no detail message.
- ConcurrentAccessException(String) - Constructor for exception class jakarta.ejb.ConcurrentAccessException
-
Constructs an ConcurrentAccessException with the specified detailed message.
- ConcurrentAccessException(String, Exception) - Constructor for exception class jakarta.ejb.ConcurrentAccessException
-
Constructs an ConcurrentAccessException with the specified detail message and a nested exception.
- ConcurrentAccessTimeoutException - Exception Class in jakarta.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 class jakarta.ejb.ConcurrentAccessTimeoutException
-
Constructor for ConcurrentAccessTimeoutException.
- ConcurrentAccessTimeoutException(String) - Constructor for exception class jakarta.ejb.ConcurrentAccessTimeoutException
-
Constructor for ConcurrentAccessTimeoutException.
- CONTAINER - Enum constant in enum jakarta.ejb.ConcurrencyManagementType
-
Container is responsible for managing concurrent access to the bean instance.
- CONTAINER - Enum constant in enum jakarta.ejb.TransactionManagementType
-
Container-managed transaction management is used.
- createCalendarTimer(ScheduleExpression) - Method in interface jakarta.ejb.TimerService
-
Create a calendar-based timer based on the input schedule expression.
- createCalendarTimer(ScheduleExpression, TimerConfig) - Method in interface jakarta.ejb.TimerService
-
Create a calendar-based timer based on the input schedule expression.
- createEJBContainer() - Static method in class jakarta.ejb.embeddable.EJBContainer
-
Create and initialize an embeddable enterprise bean container.
- createEJBContainer(Map<?, ?>) - Static method in class jakarta.ejb.embeddable.EJBContainer
-
Create and initialize an embeddable enterprise bean container with a set of configuration properties.
- createEJBContainer(Map<?, ?>) - Method in interface jakarta.ejb.spi.EJBContainerProvider
-
Called by the embeddable container bootstrap process to find a suitable embeddable container implementation.
- createErrorMessage(Throwable) - Static method in class jakarta.ejb.embeddable.EJBContainer
- CreateException - Exception Class in jakarta.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 class jakarta.ejb.CreateException
-
Constructs a CreateException with no detail message.
- CreateException(String) - Constructor for exception class jakarta.ejb.CreateException
-
Constructs a CreateException with the specified detail message.
- createIntervalTimer(long, long, TimerConfig) - Method in interface jakarta.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 jakarta.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 jakarta.ejb.TimerService
-
Create a single-action timer that expires after a specified duration.
- createSingleActionTimer(Date, TimerConfig) - Method in interface jakarta.ejb.TimerService
-
Create a single-action timer that expires at a given point in time.
- createTimer(long, long, Serializable) - Method in interface jakarta.ejb.TimerService
-
Create an interval timer whose first expiration occurs after a specified duration, and whose subsequent expirations occur after a specified interval.
- createTimer(long, Serializable) - Method in interface jakarta.ejb.TimerService
-
Create a single-action timer that expires after a specified duration.
- createTimer(Date, long, Serializable) - Method in interface jakarta.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.
- createTimer(Date, Serializable) - Method in interface jakarta.ejb.TimerService
-
Create a single-action timer that expires at a given point in time.
D
- dayOfMonth() - Element in annotation type jakarta.ejb.Schedule
-
Specifies one or more days within a month.
- dayOfMonth(int) - Method in class jakarta.ejb.ScheduleExpression
-
Set the day of the month attribute.
- dayOfMonth(String) - Method in class jakarta.ejb.ScheduleExpression
-
Set the day of the month attribute.
- dayOfMonth_ - Variable in class jakarta.ejb.ScheduleExpression
- dayOfWeek() - Element in annotation type jakarta.ejb.Schedule
-
Specifies one or more days within a week.
- dayOfWeek(int) - Method in class jakarta.ejb.ScheduleExpression
-
Set the day of the week attribute.
- dayOfWeek(String) - Method in class jakarta.ejb.ScheduleExpression
-
Set the day of the week attribute.
- dayOfWeek_ - Variable in class jakarta.ejb.ScheduleExpression
- DependsOn - Annotation Type in jakarta.ejb
-
Used to express an initialization dependency between singleton components.
- description() - Element in annotation type jakarta.ejb.EJB
-
A string describing the bean.
- description() - Element in annotation type jakarta.ejb.MessageDriven
-
A string describing the message driven bean.
- description() - Element in annotation type jakarta.ejb.Singleton
-
A string describing the singleton session bean.
- description() - Element in annotation type jakarta.ejb.Stateful
-
A string describing the stateful session bean.
- description() - Element in annotation type jakarta.ejb.Stateless
-
A string describing the stateless session bean.
- DuplicateKeyException - Exception Class in jakarta.ejb
-
The DuplicateKeyException exception is thrown if an entity EJB object or enterprise bean local object cannot be created because an object with the same key already exists.
- DuplicateKeyException() - Constructor for exception class jakarta.ejb.DuplicateKeyException
-
Constructs a DuplicateKeyException with no detail message.
- DuplicateKeyException(String) - Constructor for exception class jakarta.ejb.DuplicateKeyException
-
Constructs a DuplicateKeyException with the specified detail message.
E
- EJB - Annotation Type in jakarta.ejb
-
Indicates a dependency on the local, no-interface, or remote view of an Enterprise Bean.
- EJBAccessException - Exception Class in jakarta.ejb
-
This exception indicates that client access to a business method was denied.
- EJBAccessException() - Constructor for exception class jakarta.ejb.EJBAccessException
-
Constructs an EJBAccessException with no detail message.
- EJBAccessException(String) - Constructor for exception class jakarta.ejb.EJBAccessException
-
Constructs an EJBAccessException with the specified detailed message.
- ejbActivate() - Method in interface jakarta.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 enterprise bean object.
- ejbActivate() - Method in interface jakarta.ejb.SessionBean
-
The activate method is called when a stateful session bean instance is activated from its "passive" state.
- EJBContainer - Class in jakarta.ejb.embeddable
-
Used to execute an enterprise bean application in an embeddable container.
- EJBContainer() - Constructor for class jakarta.ejb.embeddable.EJBContainer
- EJBContainerProvider - Interface in jakarta.ejb.spi
-
The EJBContainerProvider SPI is used by the embeddable container bootstrap class to initialize a suitable embeddable container.
- EJBContext - Interface in jakarta.ejb
-
The EJBContext interface provides an instance with access to the container-provided runtime context of an enterprise bean instance.
- EJBException - Exception Class in jakarta.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 class jakarta.ejb.EJBException
-
Constructs an EJBException with no detail message.
- EJBException(Exception) - Constructor for exception class jakarta.ejb.EJBException
-
Constructs an EJBException that embeds the originally thrown exception.
- EJBException(String) - Constructor for exception class jakarta.ejb.EJBException
-
Constructs an EJBException with the specified detailed message.
- EJBException(String, Exception) - Constructor for exception class jakarta.ejb.EJBException
-
Constructs an EJBException that embeds the originally thrown exception with the specified detail message.
- EJBHome - Interface in jakarta.ejb
-
The EJBHome interface must be extended by all enterprise beans' remote home interfaces.
- ejbLoad() - Method in interface jakarta.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 jakarta.ejb
-
The EJBLocalHome interface must be extended by all enterprise beans' local home interfaces.
- EJBLocalObject - Interface in jakarta.ejb
-
The EJBLocalObject interface must be extended by all enterprise beans' local interfaces.
- EJBMetaData - Interface in jakarta.ejb
-
The EJBMetaData interface allows a client to obtain the enterprise bean's meta-data information.
- EJBObject - Interface in jakarta.ejb
-
The EJBObject interface is extended by all enterprise beans' remote interfaces.
- ejbPassivate() - Method in interface jakarta.ejb.EntityBean
-
A container invokes this method on an instance before the instance becomes disassociated with a specific enterprise bean object.
- ejbPassivate() - Method in interface jakarta.ejb.SessionBean
-
The passivate method is called before a stateful session bean instance enters the "passive" state.
- ejbRemove() - Method in interface jakarta.ejb.EntityBean
-
A container invokes this method before it removes the enterprise bean object that is currently associated with the instance.
- ejbRemove() - Method in interface jakarta.ejb.MessageDrivenBean
-
A container invokes this method before it ends the life of the message-driven object.
- ejbRemove() - Method in interface jakarta.ejb.SessionBean
-
A container invokes this method before it ends the life of the session object.
- EJBs - Annotation Type in jakarta.ejb
-
Declares multiple
EJB
annotations. - ejbStore() - Method in interface jakarta.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 jakarta.ejb.TimedObject
-
Invoked by the enterprise bean container upon timer expiration.
- EJBTransactionRequiredException - Exception Class in jakarta.ejb
-
This exception indicates that a request carried a null transaction context, but the target object requires an active transaction.
- EJBTransactionRequiredException() - Constructor for exception class jakarta.ejb.EJBTransactionRequiredException
-
Constructs an EJBTransactionRequiredException with no detail message.
- EJBTransactionRequiredException(String) - Constructor for exception class jakarta.ejb.EJBTransactionRequiredException
-
Constructs an EJBTransactionRequiredException with the specified detailed message.
- EJBTransactionRolledbackException - Exception Class in jakarta.ejb
-
This exception is thrown to a caller of bean business method to indicate that the transaction associated with processing of the request has been rolled back, or marked to roll back.
- EJBTransactionRolledbackException() - Constructor for exception class jakarta.ejb.EJBTransactionRolledbackException
-
Constructs an EJBTransactionRolledbackException with no detail message.
- EJBTransactionRolledbackException(String) - Constructor for exception class jakarta.ejb.EJBTransactionRolledbackException
-
Constructs an EJBTransactionRolledbackException with the specified detailed message.
- EJBTransactionRolledbackException(String, Exception) - Constructor for exception class jakarta.ejb.EJBTransactionRolledbackException
-
Constructs an EJBTransactionRolledbackException with the specified detail message and a nested exception.
- end(Date) - Method in class jakarta.ejb.ScheduleExpression
-
Set the end date.
- end_ - Variable in class jakarta.ejb.ScheduleExpression
- EnterpriseBean - Interface in jakarta.ejb
-
The EnterpriseBean interface is a common superinterface for the SessionBean, EntityBean and MessageDrivenBean interfaces.
- EntityBean - Interface in jakarta.ejb
-
The EntityBean interface is implemented by every entity bean class.
- EntityContext - Interface in jakarta.ejb
-
The EntityContext interface provides an instance with access to the container-provided runtime context of an entity bean instance.
F
- FinderException - Exception Class in jakarta.ejb
-
The FinderException exception must be included in the throws clause of every finder method of an entity bean's home or local home interface.
- FinderException() - Constructor for exception class jakarta.ejb.FinderException
-
Constructs an FinderException with no detail message.
- FinderException(String) - Constructor for exception class jakarta.ejb.FinderException
-
Constructs an FinderException with the specified detail message.
G
- get() - Method in class jakarta.ejb.AsyncResult
-
This method should not be called.
- get(long, TimeUnit) - Method in class jakarta.ejb.AsyncResult
-
This method should not be called.
- getAllTimers() - Method in interface jakarta.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 jakarta.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.
- getCallerPrincipal() - Method in interface jakarta.ejb.EJBContext
-
Obtain the
java.security.Principal
that identifies the caller. - getCausedByException() - Method in exception class jakarta.ejb.EJBException
-
Obtain the exception that caused the EJBException to be thrown.
- getContext() - Method in class jakarta.ejb.embeddable.EJBContainer
-
Retrieve a naming context for looking up references to session beans executing in the embeddable container.
- getContextData() - Method in interface jakarta.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. - getDayOfMonth() - Method in class jakarta.ejb.ScheduleExpression
-
Return the value of the day of the month attribute.
- getDayOfWeek() - Method in class jakarta.ejb.ScheduleExpression
-
Return the value of the day of the week attribute.
- getEJBHome() - Method in interface jakarta.ejb.EJBContext
-
Obtain the enterprise bean's remote home interface.
- getEJBHome() - Method in interface jakarta.ejb.EJBMetaData
-
Obtain the remote home interface of the enterprise bean.
- getEJBHome() - Method in interface jakarta.ejb.EJBObject
-
Obtain the enterprise bean's remote home interface.
- getEJBHome() - Method in interface jakarta.ejb.HomeHandle
-
Obtain the home object represented by this handle.
- getEJBLocalHome() - Method in interface jakarta.ejb.EJBContext
-
Obtain the enterprise bean's local home interface.
- getEJBLocalHome() - Method in interface jakarta.ejb.EJBLocalObject
-
Obtain the enterprise bean's local home interface.
- getEJBLocalObject() - Method in interface jakarta.ejb.EntityContext
-
Obtain a reference to the enterprise bean local object that is currently associated with the instance.
- getEJBLocalObject() - Method in interface jakarta.ejb.SessionContext
-
Obtain a reference to the enterprise bean local object that is associated with the instance.
- getEJBMetaData() - Method in interface jakarta.ejb.EJBHome
-
Obtain the EJBMetaData interface for the enterprise bean.
- getEJBObject() - Method in interface jakarta.ejb.EntityContext
-
Obtain a reference to the enterprise bean object that is currently associated with the instance.
- getEJBObject() - Method in interface jakarta.ejb.Handle
-
Obtain the enterprise bean object reference represented by this handle.
- getEJBObject() - Method in interface jakarta.ejb.SessionContext
-
Obtain a reference to the enterprise bean object that is currently associated with the instance.
- getEnd() - Method in class jakarta.ejb.ScheduleExpression
-
Return the end date, if set; otherwise null.
- getHandle() - Method in interface jakarta.ejb.EJBObject
-
Obtain a handle for the enterprise bean object.
- getHandle() - Method in interface jakarta.ejb.Timer
-
Get a serializable handle to the timer.
- getHomeHandle() - Method in interface jakarta.ejb.EJBHome
-
Obtain a handle for the remote home object.
- getHomeInterfaceClass() - Method in interface jakarta.ejb.EJBMetaData
-
Obtain the class object for the enterprise bean's remote home interface.
- getHour() - Method in class jakarta.ejb.ScheduleExpression
-
Return the value of the hour attribute.
- getInfo() - Method in interface jakarta.ejb.Timer
-
Get the information associated with the timer at the time of creation.
- getInfo() - Method in class jakarta.ejb.TimerConfig
-
Return the
info
object made available to timer callbacks. - getInvokedBusinessInterface() - Method in interface jakarta.ejb.SessionContext
-
Obtain the business interface or no-interface view type through which the current business method invocation was made.
- getMinute() - Method in class jakarta.ejb.ScheduleExpression
-
Return the value of the minute attribute.
- getMonth() - Method in class jakarta.ejb.ScheduleExpression
-
Return the value of the month attribute.
- getNextTimeout() - Method in interface jakarta.ejb.Timer
-
Get the point in time at which the next timer expiration is scheduled to occur.
- getPrimaryKey() - Method in interface jakarta.ejb.EJBLocalObject
-
Obtain the primary key of the enterprise bean local object.
- getPrimaryKey() - Method in interface jakarta.ejb.EJBObject
-
Obtain the primary key of the enterprise bean object.
- getPrimaryKey() - Method in interface jakarta.ejb.EntityContext
-
Obtain the primary key of the enterprise bean object that is currently associated with this instance.
- getPrimaryKeyClass() - Method in interface jakarta.ejb.EJBMetaData
-
Obtain the class object for the enterprise bean's primary key class.
- getRemoteInterfaceClass() - Method in interface jakarta.ejb.EJBMetaData
-
Obtain the class object for the enterprise bean's remote interface.
- getRollbackOnly() - Method in interface jakarta.ejb.EJBContext
-
Test if the transaction has been marked for rollback only.
- getSchedule() - Method in interface jakarta.ejb.Timer
-
Get the schedule expression corresponding to this timer.
- getSecond() - Method in class jakarta.ejb.ScheduleExpression
-
Return the value of the second attribute.
- getStart() - Method in class jakarta.ejb.ScheduleExpression
-
Return the start date, if set; otherwise null.
- getTimer() - Method in interface jakarta.ejb.TimerHandle
-
Obtain a reference to the timer represented by this handle.
- getTimeRemaining() - Method in interface jakarta.ejb.Timer
-
Get the number of milliseconds that will elapse before the next scheduled timer expiration.
- getTimers() - Method in interface jakarta.ejb.TimerService
-
Returns all active timers associated with this bean.
- getTimerService() - Method in interface jakarta.ejb.EJBContext
-
Get access to the enterprise bean Timer Service.
- getTimezone() - Method in class jakarta.ejb.ScheduleExpression
-
Return the timezone, if set; otherwise null.
- getUserTransaction() - Method in interface jakarta.ejb.EJBContext
-
Obtain the transaction demarcation interface.
- getYear() - Method in class jakarta.ejb.ScheduleExpression
-
Return the value of the year attribute.
H
- Handle - Interface in jakarta.ejb
-
The Handle interface is implemented by all enterprise bean object handles.
- HandleDelegate - Interface in jakarta.ejb.spi
-
The
HandleDelegate
interface is implemented by the enterprise bean container. - HomeHandle - Interface in jakarta.ejb
-
The HomeHandle interface is implemented by all home object handles.
- hour() - Element in annotation type jakarta.ejb.Schedule
-
Specifies one or more hours within a day.
- hour(int) - Method in class jakarta.ejb.ScheduleExpression
-
Set the hour attribute.
- hour(String) - Method in class jakarta.ejb.ScheduleExpression
-
Set the hour attribute.
- hour_ - Variable in class jakarta.ejb.ScheduleExpression
I
- IllegalLoopbackException - Exception Class in jakarta.ejb
-
This exception indicates that an attempt was made to perform an illegal loopback invocation.
- IllegalLoopbackException() - Constructor for exception class jakarta.ejb.IllegalLoopbackException
-
Constructor for IllegalLoopbackException.
- IllegalLoopbackException(String) - Constructor for exception class jakarta.ejb.IllegalLoopbackException
-
Constructor for IllegalLoopbackException.
- info() - Element in annotation type jakarta.ejb.Schedule
-
Specifies an information string that is associated with the timer
- info_ - Variable in class jakarta.ejb.TimerConfig
- inherited() - Element in annotation type jakarta.ejb.ApplicationException
-
Indicates whether the application exception designation should apply to subclasses of the annotated exception class.
- Init - Annotation Type in jakarta.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 enterprise bean 2.1 or earlier EJBHome or EJBLocalHome client view respectively). - isCalendarTimer() - Method in interface jakarta.ejb.Timer
-
Return whether this timer is a calendar-based timer.
- isCallerInRole(String) - Method in interface jakarta.ejb.EJBContext
-
Test if the caller has a given security role.
- isCancelled() - Method in class jakarta.ejb.AsyncResult
-
This method should not be called.
- isDone() - Method in class jakarta.ejb.AsyncResult
-
This method should not be called.
- isIdentical(EJBLocalObject) - Method in interface jakarta.ejb.EJBLocalObject
-
Test if a given enterprise bean local object is identical to the invoked enterprise bean local object.
- isIdentical(EJBObject) - Method in interface jakarta.ejb.EJBObject
-
Test if a given enterprise bean object is identical to the invoked enterprise bean object.
- isPersistent() - Method in interface jakarta.ejb.Timer
-
Return whether this timer has persistent semantics.
- isPersistent() - Method in class jakarta.ejb.TimerConfig
-
Return whether the timer is persistent.
- isSession() - Method in interface jakarta.ejb.EJBMetaData
-
Test if the enterprise bean's type is "session".
- isStatelessSession() - Method in interface jakarta.ejb.EJBMetaData
-
Test if the enterprise bean's type is "stateless session".
J
- jakarta.ejb - module jakarta.ejb
-
Defines the modules for jakarta.ejb
- jakarta.ejb - package jakarta.ejb
-
Contains the Enterprise Bean classes and interfaces that define the contracts between the enterprise bean and its clients and between the enterprise bean and the enterprise bean container.
- jakarta.ejb.embeddable - package jakarta.ejb.embeddable
-
Defines the classes for the enterprise bean Embeddable API.
- jakarta.ejb.spi - package jakarta.ejb.spi
-
Defines interfaces that are implemented by the enterprise bean container.
L
- Local - Annotation Type in jakarta.ejb
-
Declares the local business interface(s) for a session bean.
- LocalBean - Annotation Type in jakarta.ejb
-
Designates that a session bean exposes a no-interface view.
- LocalHome - Annotation Type in jakarta.ejb
-
Declares the local home or adapted local home interface for a session bean.
- Lock - Annotation Type in jakarta.ejb
-
Declares a concurrency lock for a singleton session bean with container managed concurrency.
- LockType - Enum in jakarta.ejb
-
Concurrency lock type for singleton beans with container-managed concurrency.
- LockType() - Constructor for enum jakarta.ejb.LockType
- lookup() - Element in annotation type jakarta.ejb.EJB
-
A portable lookup string containing the JNDI name for the target enterprise bean component.
- lookup(String) - Method in interface jakarta.ejb.EJBContext
-
Lookup a resource within the
java:
namespace.
M
- MANDATORY - Enum constant in enum jakarta.ejb.TransactionAttributeType
-
If a client invokes the enterprise bean's method while the client is associated with a transaction context, the container invokes the enterprise bean's method in the client's transaction context.
- mappedName() - Element in annotation type jakarta.ejb.EJB
-
The product specific name of the enterprise bean component to which this enterprise bean reference should be mapped.
- mappedName() - Element in annotation type jakarta.ejb.MessageDriven
-
A product specific name(e.g.
- mappedName() - Element in annotation type jakarta.ejb.Singleton
-
A product specific name(for example, global JNDI name) that this session bean should be mapped to.
- mappedName() - Element in annotation type jakarta.ejb.Stateful
-
A product specific name(e.g.
- mappedName() - Element in annotation type jakarta.ejb.Stateless
-
A product specific name(e.g.
- MessageDriven - Annotation Type in jakarta.ejb
-
Component-defining annotation for a message driven bean.
- MessageDrivenBean - Interface in jakarta.ejb
-
The MessageDrivenBean interface defines methods that the enterprise bean container uses to notify a message driven bean instance of the instance's life cycle events.
- MessageDrivenContext - Interface in jakarta.ejb
-
The MessageDrivenContext interface provides access to the runtime message-driven context that the container provides for a message-driven bean instance.
- messageListenerInterface() - Element in annotation type jakarta.ejb.MessageDriven
-
Message-listener interface.
- minute() - Element in annotation type jakarta.ejb.Schedule
-
Specifies one or more minutes with an hour.
- minute(int) - Method in class jakarta.ejb.ScheduleExpression
-
Set the minute attribute.
- minute(String) - Method in class jakarta.ejb.ScheduleExpression
-
Set the minute attribute.
- minute_ - Variable in class jakarta.ejb.ScheduleExpression
- MODULES - Static variable in class jakarta.ejb.embeddable.EJBContainer
-
Standard property name for specifying the set of modules to be initialized.
- month() - Element in annotation type jakarta.ejb.Schedule
-
Specifies one or more months within a year.
- month(int) - Method in class jakarta.ejb.ScheduleExpression
-
Set the month attribute.
- month(String) - Method in class jakarta.ejb.ScheduleExpression
-
Set the month attribute.
- month_ - Variable in class jakarta.ejb.ScheduleExpression
N
- name() - Element in annotation type jakarta.ejb.EJB
-
The logical name of the enterprise bean reference within the declaring component's (e.g., java:comp/env) environment.
- name() - Element in annotation type jakarta.ejb.MessageDriven
-
The ejb-name for this bean.
- name() - Element in annotation type jakarta.ejb.Singleton
-
The ejb-name for this bean.
- name() - Element in annotation type jakarta.ejb.Stateful
-
The ejb-name for this bean.
- name() - Element in annotation type jakarta.ejb.Stateless
-
The ejb-name for this bean.
- NEVER - Enum constant in enum jakarta.ejb.TransactionAttributeType
-
The client is required to call without a transaction context, otherwise an exception is thrown.
- newLine - Static variable in class jakarta.ejb.embeddable.EJBContainer
- NoMoreTimeoutsException - Exception Class in jakarta.ejb
-
This exception indicates that a calendar-based timer will not result in any more timeouts.
- NoMoreTimeoutsException() - Constructor for exception class jakarta.ejb.NoMoreTimeoutsException
-
Constructor for NoMoreTimeoutsException.
- NoMoreTimeoutsException(String) - Constructor for exception class jakarta.ejb.NoMoreTimeoutsException
-
Constructor for NoMoreTimeoutsException.
- NoSuchEJBException - Exception Class in jakarta.ejb
-
A NoSuchEJBException is thrown if an attempt is made to invoke a business method on a stateful session or singleton object that no longer exists.
- NoSuchEJBException() - Constructor for exception class jakarta.ejb.NoSuchEJBException
-
Constructs a NoSuchEJBException with no detail message.
- NoSuchEJBException(String) - Constructor for exception class jakarta.ejb.NoSuchEJBException
-
Constructs a NoSuchEJBException with the specified detail message.
- NoSuchEJBException(String, Exception) - Constructor for exception class jakarta.ejb.NoSuchEJBException
-
Constructs a NoSuchEJBException with the specified detail message and a nested exception.
- NoSuchEntityException - Exception Class in jakarta.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 class jakarta.ejb.NoSuchEntityException
-
Constructs a NoSuchEntityException with no detail message.
- NoSuchEntityException(Exception) - Constructor for exception class jakarta.ejb.NoSuchEntityException
-
Constructs a NoSuchEntityException that embeds the originally thrown exception.
- NoSuchEntityException(String) - Constructor for exception class jakarta.ejb.NoSuchEntityException
-
Constructs a NoSuchEntityException with the specified detailed message.
- NoSuchObjectLocalException - Exception Class in jakarta.ejb
-
A NoSuchObjectLocalException is thrown if an attempt is made to invoke a method on a local object (local enterprise bean object or timer) that no longer exists.
- NoSuchObjectLocalException() - Constructor for exception class jakarta.ejb.NoSuchObjectLocalException
-
Constructs a NoSuchObjectLocalException with no detail message.
- NoSuchObjectLocalException(String) - Constructor for exception class jakarta.ejb.NoSuchObjectLocalException
-
Constructs a NoSuchObjectLocalException with the specified detail message.
- NoSuchObjectLocalException(String, Exception) - Constructor for exception class jakarta.ejb.NoSuchObjectLocalException
-
Constructs a NoSuchObjectLocalException with the specified detail message and a nested exception.
- NOT_SUPPORTED - Enum constant in enum jakarta.ejb.TransactionAttributeType
-
The container invokes an enterprise bean method whose transaction attribute
NOT_SUPPORTED
with an unspecified transaction context.
O
- ObjectNotFoundException - Exception Class in jakarta.ejb
-
The ObjectNotFoundException exception is thrown by a finder or select method to indicate that the specified enterprise bean object or local object does not exist.
- ObjectNotFoundException() - Constructor for exception class jakarta.ejb.ObjectNotFoundException
-
Constructs an ObjectNotFoundException with no detail message.
- ObjectNotFoundException(String) - Constructor for exception class jakarta.ejb.ObjectNotFoundException
-
Constructs an ObjectNotFoundException with the specified detail message.
P
- passivationCapable() - Element in annotation type jakarta.ejb.Stateful
-
Specifies whether this stateful session bean is passivation capable
- persistent() - Element in annotation type jakarta.ejb.Schedule
-
Specifies whether the timer that is created is persistent.
- persistent_ - Variable in class jakarta.ejb.TimerConfig
- PostActivate - Annotation Type in jakarta.ejb
-
Designates a method to receive a callback after a stateful session bean has been activated.
- PrePassivate - Annotation Type in jakarta.ejb
-
Designates a method to receive a callback before a stateful session bean is passivated.
- propertyName() - Element in annotation type jakarta.ejb.ActivationConfigProperty
-
propertyName.
- propertyValue() - Element in annotation type jakarta.ejb.ActivationConfigProperty
-
propertyValue.
- PROVIDER - Static variable in class jakarta.ejb.embeddable.EJBContainer
-
Standard property name for specifying the embeddable container implementation bootstrap class.
- providers - Static variable in class jakarta.ejb.embeddable.EJBContainer
R
- READ - Enum constant in enum jakarta.ejb.LockType
-
For read-only operations.
- readEJBHome(ObjectInputStream) - Method in interface jakarta.ejb.spi.HandleDelegate
-
Deserialize the EJBHome reference corresponding to a HomeHandle.
- readEJBObject(ObjectInputStream) - Method in interface jakarta.ejb.spi.HandleDelegate
-
Deserialize the EJBObject reference corresponding to a Handle.
- Remote - Annotation Type in jakarta.ejb
-
Declares the remote business interface(s) for a session bean.
- RemoteHome - Annotation Type in jakarta.ejb
-
Declares the remote home interface or adapted remote home interface for a session bean.
- remove() - Method in interface jakarta.ejb.EJBLocalObject
-
Remove the enterprise bean local object.
- remove() - Method in interface jakarta.ejb.EJBObject
-
Remove the enterprise bean object.
- remove(Handle) - Method in interface jakarta.ejb.EJBHome
-
Remove an enterprise bean object identified by its handle.
- remove(Object) - Method in interface jakarta.ejb.EJBHome
-
Remove an enterprise bean object identified by its primary key.
- remove(Object) - Method in interface jakarta.ejb.EJBLocalHome
-
Remove an enterprise bean object identified by its primary key.
- Remove - Annotation Type in jakarta.ejb
-
Applied to a business method of a stateful session bean class to indicate to the container that the stateful session bean is to be removed by the container after completion of the method.
- RemoveException - Exception Class in jakarta.ejb
-
The RemoveException is thrown at an attempt to remove an enterprise bean object or local enterprise bean object when the enterprise bean or the container does not allow the enterprise bean object to be removed.
- RemoveException() - Constructor for exception class jakarta.ejb.RemoveException
-
Constructs an RemoveException with no detail message.
- RemoveException(String) - Constructor for exception class jakarta.ejb.RemoveException
-
Constructs an RemoveException with the specified detail message.
- reportError(Map<?, ?>, Map<String, String>, Set<String>) - Static method in class jakarta.ejb.embeddable.EJBContainer
-
Create a meaningful EJBException in case no EJBContainer provider had been found.
- REQUIRED - Enum constant in enum jakarta.ejb.TransactionAttributeType
-
If a client invokes the enterprise bean's method while the client is associated with a transaction context, the container invokes the enterprise bean's method in the client's transaction context.
- REQUIRES_NEW - Enum constant in enum jakarta.ejb.TransactionAttributeType
-
The container must invoke an enterprise bean method whose transaction attribute is set to
REQUIRES_NEW
with a new transaction context. - resultValue - Variable in class jakarta.ejb.AsyncResult
- retainIfException() - Element in annotation type jakarta.ejb.Remove
-
If true, the stateful session bean will not be removed if an exception is thrown from the designated method.
- rollback() - Element in annotation type jakarta.ejb.ApplicationException
-
Indicates whether the container should cause the transaction to rollback when the exception is thrown.
S
- Schedule - Annotation Type in jakarta.ejb
-
Schedule a timer for automatic creation with a timeout schedule based on a cron-like time expression.
- ScheduleExpression - Class in jakarta.ejb
-
A calendar-based timeout expression for an enterprise bean timer.
- ScheduleExpression() - Constructor for class jakarta.ejb.ScheduleExpression
-
Create a schedule with the default values.
- Schedules - Annotation Type in jakarta.ejb
-
Applied to a timer callback method to schedule multiple calendar-based timers for the method.
- second() - Element in annotation type jakarta.ejb.Schedule
-
Specifies one or more seconds with in a minute.
- second(int) - Method in class jakarta.ejb.ScheduleExpression
-
Set the second attribute.
- second(String) - Method in class jakarta.ejb.ScheduleExpression
-
Set the second attribute.
- second_ - Variable in class jakarta.ejb.ScheduleExpression
- serialVersionUID - Static variable in exception class jakarta.ejb.AccessLocalException
- serialVersionUID - Static variable in exception class jakarta.ejb.ConcurrentAccessException
- serialVersionUID - Static variable in exception class jakarta.ejb.ConcurrentAccessTimeoutException
- serialVersionUID - Static variable in exception class jakarta.ejb.CreateException
- serialVersionUID - Static variable in exception class jakarta.ejb.DuplicateKeyException
- serialVersionUID - Static variable in exception class jakarta.ejb.EJBAccessException
- serialVersionUID - Static variable in exception class jakarta.ejb.EJBException
- serialVersionUID - Static variable in exception class jakarta.ejb.EJBTransactionRequiredException
- serialVersionUID - Static variable in exception class jakarta.ejb.EJBTransactionRolledbackException
- serialVersionUID - Static variable in exception class jakarta.ejb.FinderException
- serialVersionUID - Static variable in exception class jakarta.ejb.IllegalLoopbackException
- serialVersionUID - Static variable in exception class jakarta.ejb.NoMoreTimeoutsException
- serialVersionUID - Static variable in exception class jakarta.ejb.NoSuchEJBException
- serialVersionUID - Static variable in exception class jakarta.ejb.NoSuchEntityException
- serialVersionUID - Static variable in exception class jakarta.ejb.NoSuchObjectLocalException
- serialVersionUID - Static variable in exception class jakarta.ejb.ObjectNotFoundException
- serialVersionUID - Static variable in exception class jakarta.ejb.RemoveException
- serialVersionUID - Static variable in class jakarta.ejb.ScheduleExpression
- serialVersionUID - Static variable in exception class jakarta.ejb.TransactionRequiredLocalException
- serialVersionUID - Static variable in exception class jakarta.ejb.TransactionRolledbackLocalException
- SessionBean - Interface in jakarta.ejb
-
The SessionBean interface defines methods that the enterprise bean container uses to notify a session bean instance of the instance's life cycle events.
- SessionContext - Interface in jakarta.ejb
-
The SessionContext interface provides access to the runtime session context that the container provides for a session bean instance.
- SessionSynchronization - Interface in jakarta.ejb
-
The SessionSynchronization interface allows a stateful session bean instance to be notified by its container of transaction boundaries.
- setEntityContext(EntityContext) - Method in interface jakarta.ejb.EntityBean
-
Set the associated entity context.
- setInfo(Serializable) - Method in class jakarta.ejb.TimerConfig
-
Set the
info
object made available to timer callbacks. - setMessageDrivenContext(MessageDrivenContext) - Method in interface jakarta.ejb.MessageDrivenBean
-
Set the associated message-driven context.
- setPersistent(boolean) - Method in class jakarta.ejb.TimerConfig
-
Specify whether the timer is persistent.
- setRollbackOnly() - Method in interface jakarta.ejb.EJBContext
-
Mark the current transaction for rollback.
- setSessionContext(SessionContext) - Method in interface jakarta.ejb.SessionBean
-
Set the associated session context.
- Singleton - Annotation Type in jakarta.ejb
-
Component-defining annotation for a singleton session bean.
- start(Date) - Method in class jakarta.ejb.ScheduleExpression
-
Set the start date.
- start_ - Variable in class jakarta.ejb.ScheduleExpression
- Startup - Annotation Type in jakarta.ejb
-
Mark a singleton bean for eager initialization during the application startup sequence.
- Stateful - Annotation Type in jakarta.ejb
-
Component-defining annotation for a stateful session bean.
- StatefulTimeout - Annotation Type in jakarta.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 jakarta.ejb
-
Component-defining annotation for a stateless session bean.
- SUPPORTS - Enum constant in enum jakarta.ejb.TransactionAttributeType
-
If the client calls with a transaction context, the container performs the same steps as described in the
REQUIRED
case.
T
- TimedObject - Interface in jakarta.ejb
-
The
TimedObject
interface contains a callback method that is used to deliver timer expiration notifications. - Timeout - Annotation Type in jakarta.ejb
-
Designates a method on a stateless session bean class, a singleton session bean class, a message driven bean class, or an enterprise bean 2.x entity bean class that should receive enterprise bean timer expirations for that bean.
- Timer - Interface in jakarta.ejb
-
The
Timer
interface contains information about a timer that was created through the enterprise bean Timer Service. - TimerConfig - Class in jakarta.ejb
-
TimerConfig is used to specify additional timer configuration settings during timer creation.
- TimerConfig() - Constructor for class jakarta.ejb.TimerConfig
-
Constructor for TimerConfig.
- TimerConfig(Serializable, boolean) - Constructor for class jakarta.ejb.TimerConfig
-
Constructor for TimerConfig.
- TimerHandle - Interface in jakarta.ejb
-
The TimerHandle interface allows the bean provider to obtain a serializable timer handle that may be persisted.
- TimerService - Interface in jakarta.ejb
-
The TimerService interface provides enterprise bean components with access to the container-provided Timer Service.
- timezone() - Element in annotation type jakarta.ejb.Schedule
-
Specifies the time zone within which the schedule is evaluated.
- timezone(String) - Method in class jakarta.ejb.ScheduleExpression
-
Set the timezone.
- timezoneID_ - Variable in class jakarta.ejb.ScheduleExpression
- toString() - Method in class jakarta.ejb.ScheduleExpression
- toString() - Method in class jakarta.ejb.TimerConfig
- TransactionAttribute - Annotation Type in jakarta.ejb
-
The
TransactionAttribute
annotation specifies whether the container is to invoke a business method within a transaction context. - TransactionAttributeType - Enum in jakarta.ejb
-
The enum
TransactionAttributeType
is used with theTransactionAttribute
annotation to specify whether the methods of a session bean or message driven bean are called with a valid transaction context. - TransactionAttributeType() - Constructor for enum jakarta.ejb.TransactionAttributeType
- TransactionManagement - Annotation Type in jakarta.ejb
-
Specifies whether a session bean or message driven bean has container managed transactions or bean managed transactions.
- TransactionManagementType - Enum in jakarta.ejb
-
The enum
TransactionManagementType
is used with theTransactionManagement
annotation to specify whether container-managed or bean-managed transaction management is used. - TransactionManagementType() - Constructor for enum jakarta.ejb.TransactionManagementType
- TransactionRequiredLocalException - Exception Class in jakarta.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 class jakarta.ejb.TransactionRequiredLocalException
-
Constructs a TransactionRequiredLocalException with no detail message.
- TransactionRequiredLocalException(String) - Constructor for exception class jakarta.ejb.TransactionRequiredLocalException
-
Constructs an TransactionRequiredLocalException with the specified detailed message.
- TransactionRolledbackLocalException - Exception Class in jakarta.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 class jakarta.ejb.TransactionRolledbackLocalException
-
Constructs a TransactionRolledbackLocalException with no detail message.
- TransactionRolledbackLocalException(String) - Constructor for exception class jakarta.ejb.TransactionRolledbackLocalException
-
Constructs a TransactionRolledbackLocalException with the specified detailed message.
- TransactionRolledbackLocalException(String, Exception) - Constructor for exception class jakarta.ejb.TransactionRolledbackLocalException
-
Constructs a TransactionRolledbackLocalException with the specified detail message and a nested exception.
U
- unit() - Element in annotation type jakarta.ejb.AccessTimeout
-
Units used for the specified value.
- unit() - Element in annotation type jakarta.ejb.StatefulTimeout
-
Units used for the specified value.
- unsetEntityContext() - Method in interface jakarta.ejb.EntityBean
-
Unset the associated entity context.
V
- value() - Element in annotation type jakarta.ejb.AccessTimeout
-
The semantics of the
value
element are as follows: A value>
0 indicates a timeout value in the units specified by theunit
element. - value() - Element in annotation type jakarta.ejb.ConcurrencyManagement
-
value.
- value() - Element in annotation type jakarta.ejb.DependsOn
-
The ejb-names of singleton components whose initialization must occur before this singleton.
- value() - Element in annotation type jakarta.ejb.EJBs
-
value.
- value() - Element in annotation type jakarta.ejb.Init
-
The name of the corresponding
create<METHOD>
method of the adapted home or local home interface. - value() - Element in annotation type jakarta.ejb.Local
-
Specifies the local business interface(s) of the bean.
- value() - Element in annotation type jakarta.ejb.LocalHome
-
The local home interface.
- value() - Element in annotation type jakarta.ejb.Lock
-
value.
- value() - Element in annotation type jakarta.ejb.Remote
-
Specifies the remote business interface(s) of the bean.
- value() - Element in annotation type jakarta.ejb.RemoteHome
-
The remote home interface
- value() - Element in annotation type jakarta.ejb.Schedules
-
One or more calendar-based timer specifications.
- value() - Element in annotation type jakarta.ejb.StatefulTimeout
-
The amount of time the stateful session bean can be idle.
- value() - Element in annotation type jakarta.ejb.TransactionAttribute
-
value.
- value() - Element in annotation type jakarta.ejb.TransactionManagement
-
value.
- valueOf(String) - Static method in enum jakarta.ejb.ConcurrencyManagementType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum jakarta.ejb.LockType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum jakarta.ejb.TransactionAttributeType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum jakarta.ejb.TransactionManagementType
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum jakarta.ejb.ConcurrencyManagementType
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum jakarta.ejb.LockType
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum jakarta.ejb.TransactionAttributeType
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum jakarta.ejb.TransactionManagementType
-
Returns an array containing the constants of this enum type, in the order they are declared.
W
- wasCancelCalled() - Method in interface jakarta.ejb.SessionContext
-
Check whether a client invoked the
cancel
method on the clientFuture
object corresponding to the currently executing asynchronous business method. - WRITE - Enum constant in enum jakarta.ejb.LockType
-
For exclusive access to the bean instance.
- writeEJBHome(EJBHome, ObjectOutputStream) - Method in interface jakarta.ejb.spi.HandleDelegate
-
Serialize the EJBHome reference corresponding to a HomeHandle.
- writeEJBObject(EJBObject, ObjectOutputStream) - Method in interface jakarta.ejb.spi.HandleDelegate
-
Serialize the EJBObject reference corresponding to a Handle.
Y
- year() - Element in annotation type jakarta.ejb.Schedule
-
Specifies one or more years.
- year(int) - Method in class jakarta.ejb.ScheduleExpression
-
Set the year attribute.
- year(String) - Method in class jakarta.ejb.ScheduleExpression
-
Set the year attribute.
- year_ - Variable in class jakarta.ejb.ScheduleExpression
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form