Uses of Class
org.apache.openejb.core.CoreDeploymentInfo

Packages that use CoreDeploymentInfo
org.apache.openejb.assembler.classic   
org.apache.openejb.core   
org.apache.openejb.core.cmp   
org.apache.openejb.core.cmp.cmp2   
org.apache.openejb.core.cmp.jpa   
org.apache.openejb.core.entity   
org.apache.openejb.core.managed   
org.apache.openejb.core.mdb   
org.apache.openejb.core.singleton   
org.apache.openejb.core.stateful   
org.apache.openejb.core.stateless   
org.apache.openejb.spring   
 

Uses of CoreDeploymentInfo in org.apache.openejb.assembler.classic
 

Methods in org.apache.openejb.assembler.classic with parameters of type CoreDeploymentInfo
static void MethodConcurrencyBuilder.applyConcurrencyAttributes(CoreDeploymentInfo deploymentInfo, List<MethodConcurrencyInfo> methodConcurrencyInfos)
           
static void MethodTransactionBuilder.applyTransactionAttributes(CoreDeploymentInfo deploymentInfo, List<MethodTransactionInfo> methodTransactionInfos)
           
 void MethodScheduleBuilder.build(CoreDeploymentInfo deploymentInfo)
           
 void InterceptorBindingBuilder.build(CoreDeploymentInfo deploymentInfo, EnterpriseBeanInfo beanInfo)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core
 

Methods in org.apache.openejb.core that return CoreDeploymentInfo
 CoreDeploymentInfo ThreadContext.getDeploymentInfo()
           
 

Constructors in org.apache.openejb.core with parameters of type CoreDeploymentInfo
ThreadContext(CoreDeploymentInfo deploymentInfo, Object primaryKey)
           
ThreadContext(CoreDeploymentInfo deploymentInfo, Object primaryKey, Operation operation)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.cmp
 

Methods in org.apache.openejb.core.cmp with parameters of type CoreDeploymentInfo
 void CmpEngine.deploy(CoreDeploymentInfo deploymentInfo)
           
 void CmpContainer.deploy(CoreDeploymentInfo deploymentInfo)
           
 int CmpEngine.executeUpdateQuery(CoreDeploymentInfo deploymentInfo, String signature, Object[] args)
           
 Object CmpContainer.getEjbInstance(CoreDeploymentInfo deployInfo, Object primaryKey)
           
 List<Object> CmpEngine.queryBeans(CoreDeploymentInfo deploymentInfo, String signature, Object[] args)
           
 void CmpEngine.undeploy(CoreDeploymentInfo deploymentInfo)
           
 void CmpContainer.undeploy(CoreDeploymentInfo deploymentInfo)
           
 

Constructors in org.apache.openejb.core.cmp with parameters of type CoreDeploymentInfo
ProxyFactory(CoreDeploymentInfo deploymentInfo)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.cmp.cmp2
 

Methods in org.apache.openejb.core.cmp.cmp2 that return CoreDeploymentInfo
static CoreDeploymentInfo Cmp2Util.getDeploymentInfo(Class type)
           
 

Methods in org.apache.openejb.core.cmp.cmp2 with parameters of type CoreDeploymentInfo
static
<Proxy extends javax.ejb.EJBLocalObject>
Proxy
Cmp2Util.getEjbProxy(CoreDeploymentInfo deploymentInfo, javax.ejb.EntityBean entity)
           
static Object Cmp2Util.getPrimaryKey(CoreDeploymentInfo deploymentInfo, javax.ejb.EntityBean entity)
           
 

Constructors in org.apache.openejb.core.cmp.cmp2 with parameters of type CoreDeploymentInfo
CmrSet(javax.ejb.EntityBean source, String sourceProperty, CoreDeploymentInfo relatedInfo, String relatedProperty, Collection<Bean> relatedBeans)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.cmp.jpa
 

Methods in org.apache.openejb.core.cmp.jpa with parameters of type CoreDeploymentInfo
 void JpaCmpEngine.deploy(CoreDeploymentInfo deploymentInfo)
           
 int JpaCmpEngine.executeUpdateQuery(CoreDeploymentInfo deploymentInfo, String signature, Object[] args)
           
 List<Object> JpaCmpEngine.queryBeans(CoreDeploymentInfo deploymentInfo, String signature, Object[] args)
           
 void JpaCmpEngine.undeploy(CoreDeploymentInfo deploymentInfo)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.entity
 

Constructors in org.apache.openejb.core.entity with parameters of type CoreDeploymentInfo
EntityInstanceManager.SynchronizationWrapper(CoreDeploymentInfo deploymentInfo, Object primaryKey, javax.ejb.EntityBean bean, boolean available, org.apache.openejb.core.entity.EntityInstanceManager.Key readyPoolKey, TransactionPolicy txPolicy)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.managed
 

Fields in org.apache.openejb.core.managed declared as CoreDeploymentInfo
 CoreDeploymentInfo Instance.deploymentInfo
           
 

Methods in org.apache.openejb.core.managed with parameters of type CoreDeploymentInfo
protected  Object ManagedContainer.businessMethod(CoreDeploymentInfo deploymentInfo, Object primKey, Class callInterface, Method callMethod, Object[] args, InterfaceType interfaceType)
           
protected  ProxyInfo ManagedContainer.createEJBObject(CoreDeploymentInfo deploymentInfo, Method callMethod, Object[] args, InterfaceType interfaceType)
           
protected  Object ManagedContainer.removeEJBObject(CoreDeploymentInfo deploymentInfo, Object primKey, Class callInterface, Method callMethod, Object[] args, InterfaceType interfaceType)
           
 

Constructors in org.apache.openejb.core.managed with parameters of type CoreDeploymentInfo
Instance(CoreDeploymentInfo deploymentInfo, Object primaryKey, Object bean, Map<String,Object> interceptors, Map<javax.persistence.EntityManagerFactory,javax.persistence.EntityManager> entityManagers)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.mdb
 

Methods in org.apache.openejb.core.mdb with parameters of type CoreDeploymentInfo
 void MdbContainer.beforeDelivery(CoreDeploymentInfo deployInfo, Object instance, Method method, XAResource xaResource)
           
 void MdbContainer.release(CoreDeploymentInfo deployInfo, Object instance)
           
 

Constructors in org.apache.openejb.core.mdb with parameters of type CoreDeploymentInfo
EndpointFactory(javax.resource.spi.ActivationSpec activationSpec, MdbContainer container, CoreDeploymentInfo deploymentInfo, MdbInstanceFactory instanceFactory, XAResourceWrapper xaResourceWrapper)
           
EndpointHandler(MdbContainer container, CoreDeploymentInfo deployment, MdbInstanceFactory instanceFactory, XAResource xaResource)
           
MdbInstanceFactory(CoreDeploymentInfo deploymentInfo, SecurityService securityService, int instanceLimit)
          Creates a MdbInstanceFactory for a single specific deployment.
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.singleton
 

Methods in org.apache.openejb.core.singleton with parameters of type CoreDeploymentInfo
protected  ProxyInfo SingletonContainer.createEJBObject(CoreDeploymentInfo deploymentInfo, Method callMethod)
           
 void SingletonInstanceManager.deploy(CoreDeploymentInfo deploymentInfo)
           
 void SingletonInstanceManager.undeploy(CoreDeploymentInfo deploymentInfo)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.stateful
 

Fields in org.apache.openejb.core.stateful declared as CoreDeploymentInfo
 CoreDeploymentInfo Instance.deploymentInfo
           
 

Methods in org.apache.openejb.core.stateful with parameters of type CoreDeploymentInfo
protected  Object StatefulContainer.businessMethod(CoreDeploymentInfo deploymentInfo, Object primKey, Class callInterface, Method callMethod, Object[] args, InterfaceType interfaceType)
           
protected  ProxyInfo StatefulContainer.createEJBObject(CoreDeploymentInfo deploymentInfo, Method callMethod, Object[] args, InterfaceType interfaceType)
           
protected  Object StatefulContainer.removeEJBObject(CoreDeploymentInfo deploymentInfo, Object primKey, Class callInterface, Method callMethod, Object[] args, InterfaceType interfaceType)
           
 

Constructors in org.apache.openejb.core.stateful with parameters of type CoreDeploymentInfo
Instance(CoreDeploymentInfo deploymentInfo, Object primaryKey, Object bean, Map<String,Object> interceptors, Map<javax.persistence.EntityManagerFactory,javax.persistence.EntityManager> entityManagers)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.core.stateless
 

Methods in org.apache.openejb.core.stateless with parameters of type CoreDeploymentInfo
protected  ProxyInfo StatelessContainer.createEJBObject(CoreDeploymentInfo deploymentInfo, Method callMethod)
           
 void StatelessInstanceManager.deploy(CoreDeploymentInfo deploymentInfo)
           
 void StatelessInstanceManager.undeploy(CoreDeploymentInfo deploymentInfo)
           
 

Uses of CoreDeploymentInfo in org.apache.openejb.spring
 

Methods in org.apache.openejb.spring with parameters of type CoreDeploymentInfo
 Map<String,EJB> AbstractApplication.getEjbBindings(JndiBuilder.JndiNameStrategy strategy, CoreDeploymentInfo deployment)
           
 



Copyright © 1999-2013 The Apache OpenEJB development community. All Rights Reserved.