Uses of Interface
org.jboss.deployers.structure.spi.DeploymentContext

Packages that use DeploymentContext
org.jboss.deployers.structure.spi   
org.jboss.deployers.structure.spi.helpers   
org.jboss.deployers.structure.spi.main   
org.jboss.deployers.structure.spi.scope   
org.jboss.deployers.structure.spi.scope.helpers   
 

Uses of DeploymentContext in org.jboss.deployers.structure.spi
 

Methods in org.jboss.deployers.structure.spi that return DeploymentContext
 DeploymentContext StructuralDeployers.determineStructure(org.jboss.deployers.client.spi.Deployment deployment)
          Determine the structure for a deployment
 DeploymentContext DeploymentContext.getParent()
          The parent
 DeploymentContext DeploymentContext.getTopLevel()
          Get the top level deployment
 DeploymentContext StructureBuilder.populateContext(org.jboss.deployers.client.spi.Deployment deployment, org.jboss.deployers.spi.structure.StructureMetaData metaData)
          Create the tree
 

Methods in org.jboss.deployers.structure.spi that return types with arguments of type DeploymentContext
 List<DeploymentContext> DeploymentContext.getChildren()
          The children
 Comparator<DeploymentContext> DeploymentContext.getComparator()
          Get the comparator.
 List<DeploymentContext> DeploymentContext.getComponents()
          The components
 

Methods in org.jboss.deployers.structure.spi with parameters of type DeploymentContext
 void DeploymentContext.addChild(DeploymentContext child)
          Add a child
 void DeploymentContext.addComponent(DeploymentContext component)
          Add a component
 ClassLoader ClassLoaderFactory.createClassLoader(DeploymentContext context)
          Create a classloader for this deployment
 void DeploymentContextVisitor.error(DeploymentContext context)
          Invoked when there is a subsequent error in the visit
 boolean DeploymentContext.removeChild(DeploymentContext child)
          Remove a child
 void ClassLoaderFactory.removeClassLoader(DeploymentContext context)
          Remove a classloader for this deployment
 boolean DeploymentContext.removeComponent(DeploymentContext component)
          Remove a component
 void DeploymentContext.setParent(DeploymentContext parent)
          Set the parent
 void DeploymentContextVisitor.visit(DeploymentContext context)
          Visit a context
 

Method parameters in org.jboss.deployers.structure.spi with type arguments of type DeploymentContext
 void DeploymentContext.setComparator(Comparator<DeploymentContext> comparator)
          Set the comparator.
 

Uses of DeploymentContext in org.jboss.deployers.structure.spi.helpers
 

Classes in org.jboss.deployers.structure.spi.helpers that implement DeploymentContext
 class AbstractDeploymentContext
          AbstractDeploymentContext.
 class ComponentDeploymentContext
          AbstractDeploymentContext.
 

Methods in org.jboss.deployers.structure.spi.helpers that return DeploymentContext
protected  DeploymentContext AbstractStructureBuilder.createChildDeploymentContext(DeploymentContext parent, org.jboss.deployers.spi.structure.ContextInfo child)
          Create a child deployment context
protected  DeploymentContext AbstractDeploymentUnit.createComponentDeploymentContext(String name, DeploymentContext parent)
          Create a component deployment context
protected  DeploymentContext AbstractStructureBuilder.createRootDeploymentContext(org.jboss.deployers.client.spi.Deployment deployment)
          Create the root deployment context
 DeploymentContext AbstractStructuralDeployers.determineStructure(org.jboss.deployers.client.spi.Deployment deployment)
           
protected  DeploymentContext AbstractDeploymentUnit.getDeploymentContext()
          Get the deployment context
 DeploymentContext ComponentDeploymentContext.getParent()
           
 DeploymentContext AbstractDeploymentContext.getParent()
           
 DeploymentContext ComponentDeploymentContext.getTopLevel()
           
 DeploymentContext AbstractDeploymentContext.getTopLevel()
           
 DeploymentContext AbstractStructureBuilder.populateContext(org.jboss.deployers.client.spi.Deployment deployment, org.jboss.deployers.spi.structure.StructureMetaData metaData)
           
 

Methods in org.jboss.deployers.structure.spi.helpers that return types with arguments of type DeploymentContext
 List<DeploymentContext> ComponentDeploymentContext.getChildren()
           
 List<DeploymentContext> AbstractDeploymentContext.getChildren()
           
 Comparator<DeploymentContext> ComponentDeploymentContext.getComparator()
           
 Comparator<DeploymentContext> AbstractDeploymentContext.getComparator()
           
 List<DeploymentContext> ComponentDeploymentContext.getComponents()
           
 List<DeploymentContext> AbstractDeploymentContext.getComponents()
           
 

Methods in org.jboss.deployers.structure.spi.helpers with parameters of type DeploymentContext
 void ComponentDeploymentContext.addChild(DeploymentContext child)
           
 void AbstractDeploymentContext.addChild(DeploymentContext child)
           
 void ComponentDeploymentContext.addComponent(DeploymentContext component)
           
 void AbstractDeploymentContext.addComponent(DeploymentContext component)
           
protected  void AbstractStructureBuilder.applyComparator(DeploymentContext context, org.jboss.deployers.spi.structure.ContextInfo contextInfo)
          Try to apply the comparator
protected  void AbstractStructureBuilder.applyContextInfo(DeploymentContext context, org.jboss.deployers.spi.structure.ContextInfo contextInfo)
          Apply the context info.
static void AbstractDeploymentContext.cleanupRepository(DeploymentContext deploymentContext)
          Cleanup the repository
 int DefaultDeploymentContextComparator.compare(DeploymentContext o1, DeploymentContext o2)
           
protected  DeploymentContext AbstractStructureBuilder.createChildDeploymentContext(DeploymentContext parent, org.jboss.deployers.spi.structure.ContextInfo child)
          Create a child deployment context
protected  DeploymentContext AbstractDeploymentUnit.createComponentDeploymentContext(String name, DeploymentContext parent)
          Create a component deployment context
protected  DeploymentUnit AbstractDeploymentUnit.createComponentDeploymentUnit(DeploymentContext component)
          Create a component deployment unit
static org.jboss.metadata.spi.MetaData AbstractDeploymentContext.getMetaData(DeploymentContext deploymentContext)
          Get the metadata for a deployment context
static org.jboss.metadata.spi.loader.MutableMetaDataLoader AbstractDeploymentContext.getMutableMetaData(DeploymentContext deploymentContext)
          Get the mutable metadata for a deployment context
static org.jboss.metadata.spi.repository.MutableMetaDataRepository AbstractDeploymentContext.getRepository(DeploymentContext deploymentContext)
          Get the repository for a deployment context
static ScopeBuilder AbstractDeploymentContext.getScopeBuilder(DeploymentContext deploymentContext)
          Get the scope builder for a deployment context
protected  void AbstractStructureBuilder.populateContext(DeploymentContext context, org.jboss.deployers.spi.structure.StructureMetaData metaData)
          Populate the child deployment contexts
 boolean ComponentDeploymentContext.removeChild(DeploymentContext child)
           
 boolean AbstractDeploymentContext.removeChild(DeploymentContext child)
           
 boolean ComponentDeploymentContext.removeComponent(DeploymentContext component)
           
 boolean AbstractDeploymentContext.removeComponent(DeploymentContext component)
           
 void ComponentDeploymentContext.setParent(DeploymentContext parent)
           
 void AbstractDeploymentContext.setParent(DeploymentContext parent)
           
 

Method parameters in org.jboss.deployers.structure.spi.helpers with type arguments of type DeploymentContext
 void ComponentDeploymentContext.setComparator(Comparator<DeploymentContext> comparator)
           
 void AbstractDeploymentContext.setComparator(Comparator<DeploymentContext> comparator)
           
 

Constructors in org.jboss.deployers.structure.spi.helpers with parameters of type DeploymentContext
AbstractDeploymentUnit(DeploymentContext deploymentContext)
          Create a new AbstractDeploymentUnit.
ComponentDeploymentContext(String name, DeploymentContext parent)
          Create a new ComponentDeploymentContext.
 

Uses of DeploymentContext in org.jboss.deployers.structure.spi.main
 

Methods in org.jboss.deployers.structure.spi.main that return DeploymentContext
 DeploymentContext MainDeployerStructure.getDeploymentContext(String name)
          Deprecated. 
 DeploymentContext MainDeployerStructure.getDeploymentContext(String name, boolean errorNotFound)
          Deprecated. 
 

Uses of DeploymentContext in org.jboss.deployers.structure.spi.scope
 

Methods in org.jboss.deployers.structure.spi.scope with parameters of type DeploymentContext
 org.jboss.metadata.spi.scope.ScopeKey ScopeBuilder.getComponentScope(DeploymentContext context)
          Get the scope for a component
 org.jboss.metadata.spi.scope.ScopeKey ScopeBuilder.getDeploymentScope(DeploymentContext context)
          Get the scope for a deployment
 org.jboss.metadata.spi.scope.ScopeKey ScopeBuilder.getMutableComponentScope(DeploymentContext context)
          Get the mutable scope for a component
 org.jboss.metadata.spi.scope.ScopeKey ScopeBuilder.getMutableDeploymentScope(DeploymentContext context)
          Get the mutable scope for a deployment
 void ScopeBuilder.initMetaDataRetrieval(org.jboss.metadata.spi.repository.MutableMetaDataRepository repository, DeploymentContext context)
          Initialise the metadata retrievals for a deployment context
 void ScopeBuilder.initMutableMetaDataRetrieval(org.jboss.metadata.spi.repository.MutableMetaDataRepository repository, DeploymentContext context)
          Initialise the mutable metadata retrieval for a deployment context
 

Uses of DeploymentContext in org.jboss.deployers.structure.spi.scope.helpers
 

Methods in org.jboss.deployers.structure.spi.scope.helpers with parameters of type DeploymentContext
 org.jboss.metadata.spi.scope.ScopeKey DefaultScopeBuilder.getComponentScope(DeploymentContext context)
           
 org.jboss.metadata.spi.scope.ScopeKey DefaultScopeBuilder.getDeploymentScope(DeploymentContext context)
           
 org.jboss.metadata.spi.scope.ScopeKey DefaultScopeBuilder.getMutableComponentScope(DeploymentContext context)
           
 org.jboss.metadata.spi.scope.ScopeKey DefaultScopeBuilder.getMutableDeploymentScope(DeploymentContext context)
           
 void DefaultScopeBuilder.initMetaDataRetrieval(org.jboss.metadata.spi.repository.MutableMetaDataRepository repository, DeploymentContext context)
           
 void DefaultScopeBuilder.initMutableMetaDataRetrieval(org.jboss.metadata.spi.repository.MutableMetaDataRepository repository, DeploymentContext context)
           
 



Copyright © 2008 JBoss Inc.. All Rights Reserved.