A B C D E F G H I J L M N O P R S T U V W

A

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.
ActivationConfigProperty - Annotation Type in javax.ejb
 
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(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.
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
 

B

beforeCompletion() - Method in interface javax.ejb.SessionSynchronization
The beforeCompletion method notifies a session Bean instance that a transaction is about to be committed.

C

cancel() - Method in interface javax.ejb.Timer
Cause the timer and all its associated expiration notifications to be cancelled.
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
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.
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 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.
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.

D

DuplicateKeyException - Exception in javax.ejb
The DuplicateKeyException exception is thrown if an entity EJB object cannot be created because an object with the same key already exists.
DuplicateKeyException() - Constructor for exception javax.ejb.DuplicateKeyException
Constructs a DuplicateKeyException with no detail message.
DuplicateKeyException(String) - Constructor for exception javax.ejb.DuplicateKeyException
Constructs a DuplicateKeyException with the specified detail message.

E

EJB - Annotation Type in javax.ejb
Indicates a dependency on the local or remote view of an Enterprise Java Bean.
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 the instance is activated from its "passive" state.
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 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 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
Declares multiple TYPE-level @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 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 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.
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.
ExcludeClassInterceptors - Annotation Type in javax.interceptor
Used to exclude class-level interceptors for a business method.
ExcludeDefaultInterceptors - Annotation Type in javax.interceptor
Used to exclude default interceptors for a bean or a business method.

F

FinderException - Exception in javax.ejb
The FinderException exception must be included in the throws clause of every findMETHOD(...) method of an entity Bean's home interface.
FinderException() - Constructor for exception javax.ejb.FinderException
Constructs an FinderException with no detail message.
FinderException(String) - Constructor for exception javax.ejb.FinderException
Constructs an FinderException with the specified detail message.

G

getBusinessObject(Class<T>) - Method in interface javax.ejb.SessionContext
Obtain an object that can be used to invoke the current bean through the given business interface.
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 being thrown.
getContextData() - Method in interface javax.interceptor.InvocationContext
Returns the context data associated with this invocation or lifecycle callback.
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.
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
Obtain the Class object for the enterprise Bean's remote home interface.
getInfo() - Method in interface javax.ejb.Timer
Get the information associated with the timer at the time of creation.
getInvokedBusinessInterface() - Method in interface javax.ejb.SessionContext
Obtain the business interface through which the current business method invocation was made.
getMessage() - Method in exception javax.ejb.EJBException
Returns the detail message, including the message from the nested exception if there is one.
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 bean class for which the interceptor was invoked.
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 parameters that will be used to invoke the business method.
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.
getRemoteInterfaceClass() - Method in interface javax.ejb.EJBMetaData
Obtain 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.
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.
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.
getUserTransaction() - Method in interface javax.ejb.EJBContext
Obtain the transaction demarcation interface.

H

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.
HomeHandle - Interface in javax.ejb
The HomeHandle interface is implemented by all home object handles.

I

Init - Annotation Type in javax.ejb
Designates a method of a session bean that corresponds to the create method of an adapted Home interface or an adapted Local Home interface.
Interceptors - Annotation Type in javax.interceptor
Declares an ordered list of interceptors for a class or method.
InvocationContext - Interface in javax.interceptor
Context information passed to AroundInvoke and Interceptor-class lifecycle callback methods.
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.
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.
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".

J

javax.ejb - package javax.ejb
The javax.ejb package contains the Enterprise JavaBeans classes and interfaces that define the contracts between the enterprise bean and its clients and between the enterprise bean and the EJB container.
javax.ejb.spi - package javax.ejb.spi
The javax.ejb.spi package defines interfaces that are implemented by the EJB container.
javax.interceptor - package javax.interceptor
The javax.interceptor package contains classes and interfaces for use with EJB interceptors.

L

Local - Annotation Type in javax.ejb
When used on the bean class, declares the local business interface(s) for a session bean.
LocalHome - Annotation Type in javax.ejb
Declares the Local Home or adapted Local Home interface for a session bean.
lookup(String) - Method in interface javax.ejb.EJBContext
Lookup a resource within the component's private naming context.

M

MessageDriven - Annotation Type in javax.ejb
Component-defining annotation for a message driven bean.
MessageDrivenBean - Interface in javax.ejb
The MessageDrivenBean interface is implemented by every message-driven enterprise Bean class.
MessageDrivenContext - Interface in javax.ejb
The MessageDrivenContext interface provides access to the runtime message-driven context that the container provides for a message-driven enterprise Bean instance.

N

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 detail 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 detail message.
NoSuchObjectLocalException(String, Exception) - Constructor for exception javax.ejb.NoSuchObjectLocalException
Constructs a NoSuchObjectLocalException with the specified detail message and a nested exception.

O

ObjectNotFoundException - Exception in javax.ejb
The ObjectNotFoundException exception is thrown by a finder method to indicate that the specified EJB object does not exist.
ObjectNotFoundException() - Constructor for exception javax.ejb.ObjectNotFoundException
Constructs an ObjectNotFoundException with no detail message.
ObjectNotFoundException(String) - Constructor for exception javax.ejb.ObjectNotFoundException
Constructs an ObjectNotFoundException with the specified detail message.

P

PostActivate - Annotation Type in javax.ejb
Designates a method to receive a callback after a stateful session bean has been activated.
PrePassivate - Annotation Type in javax.ejb
Designates a method to receive a callback before a stateful session bean is passivated.
printStackTrace(PrintStream) - Method in exception javax.ejb.EJBException
Prints the composite message and the embedded stack trace to the specified stream ps.
printStackTrace() - Method in exception javax.ejb.EJBException
Prints the composite message to System.err.
printStackTrace(PrintWriter) - Method in exception javax.ejb.EJBException
Prints the composite message and the embedded stack trace to the specified print writer pw.
proceed() - Method in interface javax.interceptor.InvocationContext
Proceed to the next entry in the interceptor chain.

R

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
Declares the remote business interface(s) for a session bean.
RemoteHome - Annotation Type in javax.ejb
Declares the Remote Home or adapted Remote Home interface for a session 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
Applied to a business method of a stateful session bean class.
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.

S

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.
setMessageDrivenContext(MessageDrivenContext) - Method in interface javax.ejb.MessageDrivenBean
Set the associated message-driven context.
setParameters(Object[]) - Method in interface javax.interceptor.InvocationContext
Sets the parameters that will be used to invoke the business method.
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.
Stateful - Annotation Type in javax.ejb
Component-defining annotation for a stateful session bean.
Stateless - Annotation Type in javax.ejb
Component-defining annotation for a stateless session bean.

T

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
Designates a method on a stateless session bean class or message driven 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.
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.
TransactionAttribute - Annotation Type in javax.ejb
When applied at the TYPE-level, designates the default transaction attribute for all business methods of the session or message driven bean.
TransactionAttributeType - Enum in javax.ejb
 
TransactionManagement - Annotation Type in javax.ejb
Declares whether a session bean or message driven bean has container managed transactions or bean managed transactions.
TransactionManagementType - Enum in javax.ejb
 
TransactionRequiredLocalException - Exception in javax.ejb
This exception indicates 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 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.

U

unsetEntityContext() - Method in interface javax.ejb.EntityBean
Unset the associated entity context.

V

valueOf(String) - Static method in enum javax.ejb.TransactionAttributeType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum javax.ejb.TransactionManagementType
Returns the enum constant of this type with the specified name.
values() - Static method in enum javax.ejb.TransactionAttributeType
Returns an array containing the constants of this enum type, in the order they're declared.
values() - Static method in enum javax.ejb.TransactionManagementType
Returns an array containing the constants of this enum type, in the order they're declared.

W

writeEJBHome(EJBHome, ObjectOutputStream) - Method in interface javax.ejb.spi.HandleDelegate
Serialize the EJBHome reference corresponding to a HomeHandle.
writeEJBObject(EJBObject, ObjectOutputStream) - Method in interface javax.ejb.spi.HandleDelegate
Serialize the EJBObject reference corresponding to a Handle.

A B C D E F G H I J L M N O P R S T U V W