| |
|
| org.jboss.ejb.LocalProxyFactory
All known Subclasses: org.jboss.ejb.plugins.local.BaseLocalProxyFactory,
LocalProxyFactory | public interface LocalProxyFactory extends GenericEntityObjectFactory,ContainerPlugin(Code) | | This is an extension to the EJBProxyFactory interface. Although some
implementations of the ProxyFactory interface may provide access
to local interfaces, others (e.g. which provide remote distribution)
will not. Good example: the JRMP delegates do not need to implement
this interface.
See Also: EJBProxyFactory author: Daniel OConnor version: $Revision: 57209 $ |
getEJBLocalHome | EJBLocalHome getEJBLocalHome()(Code) | | This method is called whenever the EJBLocalHome implementation for this
container is needed.
an implementation of the local home interface for thiscontainer |
getEntityEJBLocalObject | EJBLocalObject getEntityEJBLocalObject(Object id)(Code) | | This method is called whenever an EJBLocalObject implementation for an
entitybean is needed.
Parameters: id - the primary key of the entity an implementation of the local interface for this container |
getEntityEJBLocalObject | EJBLocalObject getEntityEJBLocalObject(Object id, boolean create)(Code) | | This method is called whenever a new EJBLocalObject should be created.
Called when the instance is created.
Parameters: id - the primary key of the entity an implementation of the local interface for this container |
getEntityLocalCollection | Collection getEntityLocalCollection(Collection collection)(Code) | | This method is called whenever a collection of EJBLocalObjects for a
collection of primary keys is needed.
Parameters: collection - enumeration of primary keys a collection of EJBLocalObjects implementing the remoteinterface for this container |
getStatefulSessionEJBLocalObject | EJBLocalObject getStatefulSessionEJBLocalObject(Object id)(Code) | | This method is called whenever an EJBLocalObject implementation for a
stateful session bean is needed.
Parameters: id - the id of the session an implementation of the local interface for this container |
getStatelessSessionEJBLocalObject | EJBLocalObject getStatelessSessionEJBLocalObject()(Code) | | This method is called whenever an EJBLocalObject implementation for a
stateless session bean is needed.
an implementation of the local interface for this container |
|
|
|