Uses of Interface
org.jboss.ejb.GenericEntityObjectFactory

Packages that use GenericEntityObjectFactory
org.jboss.ejb Package description goes here
org.jboss.ejb.plugins Package description goes here
org.jboss.ejb.plugins.cmp.jdbc Package description goes here
org.jboss.ejb.plugins.cmp.jdbc2   
org.jboss.ejb.plugins.inflow   
org.jboss.ejb.plugins.jms Package description goes here
org.jboss.ejb.plugins.local Package description goes here
org.jboss.proxy.ejb   
 

Uses of GenericEntityObjectFactory in org.jboss.ejb
 

Subinterfaces of GenericEntityObjectFactory in org.jboss.ejb
 interface EJBProxyFactory
          This is an interface for Container plugins.
 interface LocalProxyFactory
          This is an extension to the EJBProxyFactory interface.
 

Methods in org.jboss.ejb with parameters of type GenericEntityObjectFactory
 Collection EntityPersistenceStore.findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext instance, GenericEntityObjectFactory factory)
          This method is called when collections of entities are to be found.
 Collection EntityPersistenceManager.findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext instance, GenericEntityObjectFactory factory)
          This method is called when collections of entities are to be found.
 Object EntityPersistenceStore.findEntity(Method finderMethod, Object[] args, EntityEnterpriseContext instance, GenericEntityObjectFactory factory)
          This method is called when single entities are to be found.
 Object EntityPersistenceManager.findEntity(Method finderMethod, Object[] args, EntityEnterpriseContext instance, GenericEntityObjectFactory factory)
          This method is called when single entities are to be found.
static Collection GenericEntityObjectFactory.UTIL.getEntityCollection(GenericEntityObjectFactory factory, Collection ids)
           
 

Uses of GenericEntityObjectFactory in org.jboss.ejb.plugins
 

Methods in org.jboss.ejb.plugins with parameters of type GenericEntityObjectFactory
 Collection CMPPersistenceManager.findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
          find multiple entities
 Collection CMPInMemoryPersistenceManager.findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext instance, GenericEntityObjectFactory factory)
          This method is called when collections of entities are to be found.
 Collection CMPFilePersistenceManager.findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Collection BMPPersistenceManager.findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Object CMPPersistenceManager.findEntity(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Object CMPInMemoryPersistenceManager.findEntity(Method finderMethod, Object[] args, EntityEnterpriseContext instance, GenericEntityObjectFactory factory)
          This method is called when single entities are to be found.
 Object CMPFilePersistenceManager.findEntity(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Object BMPPersistenceManager.findEntity(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 

Uses of GenericEntityObjectFactory in org.jboss.ejb.plugins.cmp.jdbc
 

Methods in org.jboss.ejb.plugins.cmp.jdbc with parameters of type GenericEntityObjectFactory
 Collection JDBCQueryCommand.execute(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Object JDBCFindEntityCommand.execute(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Collection JDBCFindEntitiesCommand.execute(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Collection JDBCFindByPrimaryKeyQuery.execute(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Collection JDBCDynamicQLQuery.execute(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Collection JDBCCustomFinderQuery.execute(Method unused, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Collection JDBCAbstractQueryCommand.execute(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
protected  Collection JDBCAbstractQueryCommand.execute(String sql, Object[] args, int offset, int limit, JDBCEntityBridge selectEntity, JDBCCMPFieldBridge selectField, SelectFunction selectFunction, JDBCStoreManager selectManager, boolean[] eagerLoadMask, List parameters, List onFindCMRList, JDBCQueryMetaData queryMetaData, GenericEntityObjectFactory factory, org.jboss.logging.Logger log)
           
 Collection JDBCStoreManager.findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 Object JDBCStoreManager.findEntity(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
           
 

Uses of GenericEntityObjectFactory in org.jboss.ejb.plugins.cmp.jdbc2
 

Methods in org.jboss.ejb.plugins.cmp.jdbc2 with parameters of type GenericEntityObjectFactory
protected  Object AbstractQueryCommand.executeFetchOne(Object[] args, GenericEntityObjectFactory factory)
           
 Collection QueryCommand.fetchCollection(Schema schema, GenericEntityObjectFactory factory, Object[] args)
           
 Collection DynamicQueryCommand.fetchCollection(Schema schema, GenericEntityObjectFactory factory, Object[] args)
           
 Collection AbstractQueryCommand.fetchCollection(Schema schema, GenericEntityObjectFactory factory, Object[] args)
           
 Object QueryCommand.fetchOne(Schema schema, GenericEntityObjectFactory factory, Object[] args)
           
 Object FindByPrimaryKeyCommand.fetchOne(Schema schema, GenericEntityObjectFactory factory, Object[] args)
           
 Object DynamicQueryCommand.fetchOne(Schema schema, GenericEntityObjectFactory factory, Object[] args)
           
 Object AbstractQueryCommand.fetchOne(Schema schema, GenericEntityObjectFactory factory, Object[] args)
           
 Collection JDBCStoreManager2.findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext instance, GenericEntityObjectFactory factory)
           
 Object JDBCStoreManager2.findEntity(Method finderMethod, Object[] args, EntityEnterpriseContext instance, GenericEntityObjectFactory factory)
           
 

Uses of GenericEntityObjectFactory in org.jboss.ejb.plugins.inflow
 

Classes in org.jboss.ejb.plugins.inflow that implement GenericEntityObjectFactory
 class JBossJMSMessageEndpointFactory
          Hacked version of message endpoint factory for backwards compatibility
 class JBossMessageEndpointFactory
          EJBProxyFactory for inflow message driven beans
 

Uses of GenericEntityObjectFactory in org.jboss.ejb.plugins.jms
 

Classes in org.jboss.ejb.plugins.jms that implement GenericEntityObjectFactory
 class JMSContainerInvoker
          EJBProxyFactory for JMS MessageDrivenBeans
 

Uses of GenericEntityObjectFactory in org.jboss.ejb.plugins.local
 

Classes in org.jboss.ejb.plugins.local that implement GenericEntityObjectFactory
 class BaseLocalProxyFactory
          The LocalProxyFactory implementation that handles local ejb interface proxies.
 

Uses of GenericEntityObjectFactory in org.jboss.proxy.ejb
 

Classes in org.jboss.proxy.ejb that implement GenericEntityObjectFactory
 class ProxyFactory
          As we remove the one one association between container STACK and invoker we keep this around.
 



Copyright © 2002 JBoss Group, LLC. All Rights Reserved.