Uses of Interface
org.apache.openejb.DeploymentInfo

Packages that use DeploymentInfo
org.apache.openejb   
org.apache.openejb.assembler.classic   
org.apache.openejb.core   
org.apache.openejb.core.cmp   
org.apache.openejb.core.entity   
org.apache.openejb.core.ivm   
org.apache.openejb.core.mdb   
org.apache.openejb.core.stateful   
org.apache.openejb.core.stateless   
org.apache.openejb.core.timer   
org.apache.openejb.server.axis   
org.apache.openejb.server.axis2   
org.apache.openejb.server.axis2.ejb   
org.apache.openejb.server.cxf   
org.apache.openejb.server.cxf.ejb   
org.apache.openejb.server.ejbd   
org.apache.openejb.server.webservices   
org.apache.openejb.spi   
 

Uses of DeploymentInfo in org.apache.openejb
 

Fields in org.apache.openejb declared as DeploymentInfo
protected  DeploymentInfo ProxyInfo.deploymentInfo
           
 

Methods in org.apache.openejb that return DeploymentInfo
 DeploymentInfo[] Container.deployments()
           
 DeploymentInfo ProxyInfo.getDeploymentInfo()
           
 DeploymentInfo Container.getDeploymentInfo(Object deploymentID)
           
 

Methods in org.apache.openejb with parameters of type DeploymentInfo
 void Container.deploy(DeploymentInfo info)
           
 URI[] ClusteredRPCContainer.getLocations(DeploymentInfo info)
           
 void Container.undeploy(DeploymentInfo info)
           
 

Constructors in org.apache.openejb with parameters of type DeploymentInfo
ProxyInfo(DeploymentInfo depInfo, Object pk)
          This is the constructor that containers should call.
ProxyInfo(DeploymentInfo deploymentInfo, Object primaryKey, List<Class> interfaces, InterfaceType proxyType)
           
 

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

Methods in org.apache.openejb.assembler.classic that return types with arguments of type DeploymentInfo
 HashMap<String,DeploymentInfo> EjbJarBuilder.build(EjbJarInfo ejbJar)
           
 

Methods in org.apache.openejb.assembler.classic with parameters of type DeploymentInfo
 void JndiBuilder.JndiNameStrategy.begin(DeploymentInfo deploymentInfo)
           
 void JndiBuilder.TemplatedStrategy.begin(DeploymentInfo deploymentInfo)
           
 void JndiBuilder.LegacyAddedSuffixStrategy.begin(DeploymentInfo deploymentInfo)
           
 void JndiBuilder.bind(EjbJarInfo ejbJarInfo, DeploymentInfo deploymentInfo, EnterpriseBeanInfo beanInfo, JndiBuilder.JndiNameStrategy strategy)
           
static Map<Method,MethodAttributeInfo> MethodInfoUtil.resolveAttributes(List<? extends MethodAttributeInfo> infos, DeploymentInfo deploymentInfo)
           
 

Method parameters in org.apache.openejb.assembler.classic with type arguments of type DeploymentInfo
 void JndiBuilder.build(EjbJarInfo ejbJar, HashMap<String,DeploymentInfo> deployments)
           
 PolicyContext JaccPermissionsBuilder.build(EjbJarInfo ejbJar, HashMap<String,DeploymentInfo> deployments)
           
 void MethodTransactionBuilder.build(HashMap<String,DeploymentInfo> deployments, List<MethodTransactionInfo> methodTransactions)
           
 void EjbJarBuilder.deploy(HashMap<String,DeploymentInfo> deployments)
           
 

Constructor parameters in org.apache.openejb.assembler.classic with type arguments of type DeploymentInfo
JndiBuilder.TemplatedStrategy(EjbJarInfo ejbJarInfo, Map<String,DeploymentInfo> deployments)
           
 

Uses of DeploymentInfo in org.apache.openejb.core
 

Classes in org.apache.openejb.core that implement DeploymentInfo
 class CoreDeploymentInfo
           
 

Methods in org.apache.openejb.core that return DeploymentInfo
 DeploymentInfo[] CoreContainerSystem.deployments()
           
 DeploymentInfo[] RpcContainerWrapper.deployments()
           
 DeploymentInfo CoreContainerSystem.getDeploymentInfo(Object id)
           
 DeploymentInfo RpcContainerWrapper.getDeploymentInfo(Object deploymentID)
           
 

Methods in org.apache.openejb.core with parameters of type DeploymentInfo
 void CoreContainerSystem.addDeployment(DeploymentInfo deployment)
           
 void RpcContainerWrapper.deploy(DeploymentInfo info)
           
 void CoreContainerSystem.removeDeploymentInfo(DeploymentInfo info)
           
 void RpcContainerWrapper.undeploy(DeploymentInfo info)
           
 

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

Fields in org.apache.openejb.core.cmp with type parameters of type DeploymentInfo
protected  Map<Class,DeploymentInfo> CmpContainer.deploymentsByClass
          When events are fired from the CMP engine only an entity bean instance is returned.
protected  Map<Object,DeploymentInfo> CmpContainer.deploymentsById
          Index used for getDeployments() and getDeploymentInfo(deploymentId).
 

Methods in org.apache.openejb.core.cmp that return DeploymentInfo
 DeploymentInfo[] CmpContainer.deployments()
           
 DeploymentInfo CmpContainer.getDeploymentInfo(Object deploymentID)
           
 

Methods in org.apache.openejb.core.cmp with parameters of type DeploymentInfo
 void CmpContainer.deploy(DeploymentInfo deploymentInfo)
           
 Object CmpContainer.select(DeploymentInfo di, String methodSignature, String returnType, Object... args)
           
 void CmpContainer.undeploy(DeploymentInfo deploymentInfo)
           
 int CmpContainer.update(DeploymentInfo di, String methodSignature, Object... args)
           
 

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

Methods in org.apache.openejb.core.entity that return DeploymentInfo
 DeploymentInfo[] EntityContainer.deployments()
           
 DeploymentInfo EntityContainer.getDeploymentInfo(Object deploymentID)
           
 

Methods in org.apache.openejb.core.entity with parameters of type DeploymentInfo
 void EntityContainer.deploy(DeploymentInfo info)
           
 void EntityInstanceManager.deploy(DeploymentInfo deploymentInfo)
           
 void EntrancyTracker.enter(DeploymentInfo deploymentInfo, Object primaryKey)
           
 void EntrancyTracker.exit(DeploymentInfo deploymentInfo, Object primaryKey)
           
protected  EjbObjectProxyHandler EntityEjbHomeHandler.newEjbObjectHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
 void EntityContainer.undeploy(DeploymentInfo info)
           
 void EntityInstanceManager.undeploy(DeploymentInfo deploymentInfo)
           
 

Constructors in org.apache.openejb.core.entity with parameters of type DeploymentInfo
EntityEjbHomeHandler(DeploymentInfo deploymentInfo, InterfaceType interfaceType, List<Class> interfaces)
           
EntityEjbObjectHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
 

Uses of DeploymentInfo in org.apache.openejb.core.ivm
 

Methods in org.apache.openejb.core.ivm with parameters of type DeploymentInfo
protected static EjbHomeProxyHandler EjbHomeProxyHandler.createHomeHandler(DeploymentInfo deploymentInfo, InterfaceType interfaceType, List<Class> interfaces)
           
static Object EjbHomeProxyHandler.createHomeProxy(DeploymentInfo deploymentInfo, InterfaceType interfaceType)
           
static Object EjbHomeProxyHandler.createHomeProxy(DeploymentInfo deploymentInfo, InterfaceType interfaceType, List<Class> objectInterfaces)
           
static Object EjbObjectProxyHandler.createProxy(DeploymentInfo deploymentInfo, Object primaryKey, InterfaceType interfaceType)
           
static Object EjbObjectProxyHandler.createProxy(DeploymentInfo deploymentInfo, Object primaryKey, InterfaceType interfaceType, List<Class> interfaces)
           
protected abstract  EjbObjectProxyHandler EjbHomeProxyHandler.newEjbObjectHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
 

Constructors in org.apache.openejb.core.ivm with parameters of type DeploymentInfo
BaseEjbProxyHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
EjbHomeProxyHandler(DeploymentInfo deploymentInfo, InterfaceType interfaceType, List<Class> interfaces)
           
EjbObjectProxyHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
 

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

Methods in org.apache.openejb.core.mdb that return DeploymentInfo
 DeploymentInfo[] MdbContainer.deployments()
           
 DeploymentInfo MdbContainer.getDeploymentInfo(Object deploymentID)
           
 

Methods in org.apache.openejb.core.mdb with parameters of type DeploymentInfo
 void MdbContainer.deploy(DeploymentInfo info)
           
 void MdbContainer.undeploy(DeploymentInfo info)
           
 

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

Fields in org.apache.openejb.core.stateful with type parameters of type DeploymentInfo
protected  Map<Object,DeploymentInfo> StatefulContainer.deploymentsById
          Index used for getDeployments() and getDeploymentInfo(deploymentId).
 

Methods in org.apache.openejb.core.stateful that return DeploymentInfo
 DeploymentInfo[] StatefulContainer.deployments()
           
 DeploymentInfo StatefulContainer.getDeploymentInfo(Object deploymentID)
           
 

Methods in org.apache.openejb.core.stateful with parameters of type DeploymentInfo
 void StatefulContainer.deploy(DeploymentInfo deploymentInfo)
           
protected  EjbObjectProxyHandler StatefulEjbHomeHandler.newEjbObjectHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
 void StatefulContainer.undeploy(DeploymentInfo info)
           
 

Constructors in org.apache.openejb.core.stateful with parameters of type DeploymentInfo
StatefulEjbHomeHandler(DeploymentInfo deploymentInfo, InterfaceType interfaceType, List<Class> interfaces)
           
StatefulEjbObjectHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
 

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

Methods in org.apache.openejb.core.stateless that return DeploymentInfo
 DeploymentInfo[] StatelessContainer.deployments()
           
 DeploymentInfo StatelessContainer.getDeploymentInfo(Object deploymentID)
           
 

Methods in org.apache.openejb.core.stateless with parameters of type DeploymentInfo
 void StatelessContainer.deploy(DeploymentInfo info)
           
protected  EjbObjectProxyHandler StatelessEjbHomeHandler.newEjbObjectHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
 void StatelessContainer.undeploy(DeploymentInfo info)
           
 

Constructors in org.apache.openejb.core.stateless with parameters of type DeploymentInfo
StatelessEjbHomeHandler(DeploymentInfo deploymentInfo, InterfaceType interfaceType, List<Class> interfaces)
           
StatelessEjbObjectHandler(DeploymentInfo deploymentInfo, Object pk, InterfaceType interfaceType, List<Class> interfaces)
           
 

Uses of DeploymentInfo in org.apache.openejb.core.timer
 

Constructors in org.apache.openejb.core.timer with parameters of type DeploymentInfo
EjbTimerServiceImpl(DeploymentInfo deployment)
           
EjbTimerServiceImpl(DeploymentInfo deployment, TransactionManager transactionManager, Executor threadPool, TimerStore timerStore, int retryAttempts)
           
 

Uses of DeploymentInfo in org.apache.openejb.server.axis
 

Methods in org.apache.openejb.server.axis with parameters of type DeploymentInfo
protected  HttpListener AxisService.createEjbWsContainer(URL moduleBaseUrl, PortData port, DeploymentInfo deploymentInfo)
           
 

Constructors in org.apache.openejb.server.axis with parameters of type DeploymentInfo
EjbContainerProvider(DeploymentInfo ejbDeployment)
           
EjbContainerProvider(DeploymentInfo ejbDeployment, List<javax.xml.rpc.handler.HandlerInfo> handlerInfos)
           
 

Uses of DeploymentInfo in org.apache.openejb.server.axis2
 

Methods in org.apache.openejb.server.axis2 with parameters of type DeploymentInfo
protected  HttpListener Axis2Service.createEjbWsContainer(URL moduleBaseUrl, PortData port, DeploymentInfo deploymentInfo)
           
 

Uses of DeploymentInfo in org.apache.openejb.server.axis2.ejb
 

Constructors in org.apache.openejb.server.axis2.ejb with parameters of type DeploymentInfo
EjbMessageReceiver(EjbWsContainer container, Class serviceImplClass, DeploymentInfo deploymentInfo)
           
EjbWsContainer(PortData portData, DeploymentInfo deploymentInfo)
           
 

Uses of DeploymentInfo in org.apache.openejb.server.cxf
 

Methods in org.apache.openejb.server.cxf with parameters of type DeploymentInfo
protected  HttpListener CxfService.createEjbWsContainer(URL moduleBaseUrl, PortData port, DeploymentInfo deploymentInfo)
           
 

Uses of DeploymentInfo in org.apache.openejb.server.cxf.ejb
 

Constructors in org.apache.openejb.server.cxf.ejb with parameters of type DeploymentInfo
EjbEndpoint(org.apache.cxf.Bus bus, PortData portData, DeploymentInfo deploymentInfo)
           
EjbMethodInvoker(org.apache.cxf.Bus bus, DeploymentInfo deploymentInfo)
           
EjbWsContainer(org.apache.cxf.Bus bus, PortData port, DeploymentInfo deploymentInfo)
           
 

Uses of DeploymentInfo in org.apache.openejb.server.ejbd
 

Methods in org.apache.openejb.server.ejbd that return DeploymentInfo
 DeploymentInfo DeploymentIndex.getDeployment(EJBRequest req)
           
protected  DeploymentInfo EjbDaemon.getDeployment(EJBRequest req)
           
 DeploymentInfo DeploymentIndex.getDeployment(int index)
           
 DeploymentInfo DeploymentIndex.getDeployment(Integer index)
           
 DeploymentInfo DeploymentIndex.getDeployment(String deploymentID)
           
 DeploymentInfo CallContext.getDeploymentInfo()
           
 

Methods in org.apache.openejb.server.ejbd with parameters of type DeploymentInfo
 int DeploymentIndex.getDeploymentIndex(DeploymentInfo deployment)
           
 void CallContext.setDeploymentInfo(DeploymentInfo info)
           
 void BasicClusterableRequestHandler.updateServer(DeploymentInfo deploymentInfo, ClusterableRequest req, ClusterableResponse res)
           
 void ClusterableRequestHandler.updateServer(DeploymentInfo deploymentInfo, ClusterableRequest req, ClusterableResponse res)
           
 

Constructors in org.apache.openejb.server.ejbd with parameters of type DeploymentInfo
DeploymentIndex(DeploymentInfo[] deploymentInfos)
           
 

Uses of DeploymentInfo in org.apache.openejb.server.webservices
 

Methods in org.apache.openejb.server.webservices with parameters of type DeploymentInfo
protected abstract  HttpListener WsService.createEjbWsContainer(URL moduleBaseUrl, PortData port, DeploymentInfo deploymentInfo)
           
 

Uses of DeploymentInfo in org.apache.openejb.spi
 

Methods in org.apache.openejb.spi that return DeploymentInfo
 DeploymentInfo[] ContainerSystem.deployments()
           
 DeploymentInfo ContainerSystem.getDeploymentInfo(Object id)
           
 



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