Uses of Interface
jakarta.ejb.EJBObject
-
Packages that use EJBObject Package Description 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.spi Defines interfaces that are implemented by the enterprise bean container.org.jboss.ejb.client -
-
Uses of EJBObject in jakarta.ejb
Methods in jakarta.ejb that return EJBObject Modifier and Type Method Description EJBObjectEntityContext. getEJBObject()Obtain a reference to the enterprise bean object that is currently associated with the instance.EJBObjectHandle. getEJBObject()Obtain the enterprise bean object reference represented by this handle.EJBObjectSessionContext. getEJBObject()Obtain a reference to the enterprise bean object that is currently associated with the instance.Methods in jakarta.ejb with parameters of type EJBObject Modifier and Type Method Description booleanEJBObject. isIdentical(EJBObject obj)Test if a given enterprise bean object is identical to the invoked enterprise bean object. -
Uses of EJBObject in jakarta.ejb.spi
Methods in jakarta.ejb.spi that return EJBObject Modifier and Type Method Description EJBObjectHandleDelegate. readEJBObject(ObjectInputStream istream)Deserialize the EJBObject reference corresponding to a Handle.Methods in jakarta.ejb.spi with parameters of type EJBObject Modifier and Type Method Description voidHandleDelegate. writeEJBObject(EJBObject ejbObject, ObjectOutputStream ostream)Serialize the EJBObject reference corresponding to a Handle. -
Uses of EJBObject in org.jboss.ejb.client
Classes in org.jboss.ejb.client with type parameters of type EJBObject Modifier and Type Class Description classAbstractEJBMetaData<T extends EJBObject,H extends EJBHome>Abstract base class for all Enterprise Beans metadata.classEJBHandle<T extends EJBObject>A handle for an Enterprise Bean interface.classEntityEJBLocator<T extends EJBObject>A locator for an entity Enterprise Bean.classEntityEJBMetaData<T extends EJBObject,H extends EJBHome>Enterprise Beans metadata for entity Enterprise Beans.classStatefulEJBMetaData<T extends EJBObject,H extends EJBHome>EJB metadata for stateful EJBs.classStatelessEJBMetaData<T extends EJBObject,H extends EJBHome>Enterprise Beans metadata for stateless Enterprise Beans.Methods in org.jboss.ejb.client with type parameters of type EJBObject Modifier and Type Method Description static <T extends EJBObject>
EJBHandle<T>EJBHandle. create(EJBLocator<T> locator)Construct a new instance.static <T extends EJBObject>
EntityEJBLocator<T>EntityEJBLocator. create(Class<T> viewType, EJBIdentifier identifier, Object primaryKey, Affinity affinity)Construct a new instance.static <T extends EJBObject,H extends EJBHome>
EntityEJBMetaData<T,H>EntityEJBMetaData. create(Class<T> remoteInterfaceClass, EJBHomeLocator<H> homeLocator, Class<?> primaryKeyClass)Construct a new instance.static <T extends EJBObject,H extends EJBHome>
StatefulEJBMetaData<T,H>StatefulEJBMetaData. create(Class<T> remoteInterfaceClass, EJBHomeLocator<H> homeLocator)Construct a new instance.static <T extends EJBObject,H extends EJBHome>
StatelessEJBMetaData<T,H>StatelessEJBMetaData. create(Class<T> remoteInterfaceClass, EJBHomeLocator<H> homeLocator)Construct a new instance.<S extends EJBObject>
EntityEJBLocator<? extends S>EJBLocator. narrowAsEntity(Class<S> type)Narrow this locator to the target type as a entity locator.<S extends EJBObject>
EntityEJBLocator<? extends S>EntityEJBLocator. narrowAsEntity(Class<S> type)
-