Tuscany Core

Uses of Interface
org.apache.tuscany.core.context.CompositeContext

Packages that use CompositeContext
org.apache.tuscany.core.builder   
org.apache.tuscany.core.client   
org.apache.tuscany.core.context   
org.apache.tuscany.core.context.impl   
org.apache.tuscany.core.extension   
org.apache.tuscany.core.injection   
org.apache.tuscany.core.runtime   
org.apache.tuscany.core.system.config   
org.apache.tuscany.core.system.context   
org.apache.tuscany.core.wire.impl   
 

Uses of CompositeContext in org.apache.tuscany.core.builder
 

Methods in org.apache.tuscany.core.builder that return CompositeContext
 CompositeContext ContextResolver.getCurrentContext()
          Returns the current composite context
 

Methods in org.apache.tuscany.core.builder with parameters of type CompositeContext
 void ContextFactory.prepare(CompositeContext parent)
          Called to signal to the configuration that its parent context has been activated and that it shoud perform any required initialization steps
 

Uses of CompositeContext in org.apache.tuscany.core.client
 

Methods in org.apache.tuscany.core.client that return CompositeContext
static CompositeContext BootstrapHelper.bootstrapStaxLoader(SystemCompositeContext parentContext, org.apache.tuscany.model.assembly.AssemblyContext modelContext)
          Bootstrap the StAX-based loader.
static CompositeContext BootstrapHelper.registerModule(CompositeContext parent, org.apache.tuscany.model.assembly.ModuleComponent component)
           
 

Methods in org.apache.tuscany.core.client with parameters of type CompositeContext
static CompositeContext BootstrapHelper.registerModule(CompositeContext parent, org.apache.tuscany.model.assembly.ModuleComponent component)
           
 

Uses of CompositeContext in org.apache.tuscany.core.context
 

Subinterfaces of CompositeContext in org.apache.tuscany.core.context
 interface AutowireContext
          A specialization of a CompositeContext that is able to automatically resolve references for its children using EntryPoint or Service interfaces exposed by it or, recursively, any of it parents.
 interface ScopeAwareContext
          Denotes a composite context that supports scopes
 interface SystemCompositeContext
          Marker type for system composite contexts
 

Methods in org.apache.tuscany.core.context that return CompositeContext
 CompositeContext CompositeContext.getParent()
          Returns the parent context, or null if the context does not have one
 

Methods in org.apache.tuscany.core.context with parameters of type CompositeContext
 void CompositeContext.setParent(CompositeContext parent)
          Sets the parent context
 

Uses of CompositeContext in org.apache.tuscany.core.context.impl
 

Classes in org.apache.tuscany.core.context.impl that implement CompositeContext
 class AbstractCompositeContext
          The base implementation of a composite context
 class CompositeContextImpl
          The standard implementation of an composite context.
 

Fields in org.apache.tuscany.core.context.impl declared as CompositeContext
protected  CompositeContext AbstractCompositeContext.parentContext
           
 

Methods in org.apache.tuscany.core.context.impl that return CompositeContext
 CompositeContext AbstractCompositeContext.getParent()
           
 

Methods in org.apache.tuscany.core.context.impl with parameters of type CompositeContext
 void AbstractCompositeContext.setParent(CompositeContext parent)
           
 

Constructors in org.apache.tuscany.core.context.impl with parameters of type CompositeContext
AbstractCompositeContext(java.lang.String name, CompositeContext parent, ScopeStrategy strategy, EventContext ctx, ConfigurationContext configCtx)
           
CompositeContextImpl(java.lang.String name, CompositeContext parent, AutowireContext autowireContext, ScopeStrategy strategy, EventContext ctx, ConfigurationContext configCtx)
           
CompositeContextImpl(java.lang.String name, CompositeContext parent, ScopeStrategy strategy, EventContext ctx, ConfigurationContext configCtx)
           
 

Uses of CompositeContext in org.apache.tuscany.core.extension
 

Methods in org.apache.tuscany.core.extension with parameters of type CompositeContext
 void EntryPointContextFactory.prepare(CompositeContext parent)
           
 void ExternalServiceContextFactory.prepare(CompositeContext parent)
           
 

Uses of CompositeContext in org.apache.tuscany.core.injection
 

Methods in org.apache.tuscany.core.injection that return CompositeContext
 CompositeContext ContextObjectFactory.getInstance()
           
 

Uses of CompositeContext in org.apache.tuscany.core.runtime
 

Subinterfaces of CompositeContext in org.apache.tuscany.core.runtime
 interface RuntimeContext
          Represents a top-level component context in the runtime, that is the bootstrap context.
 

Classes in org.apache.tuscany.core.runtime that implement CompositeContext
 class RuntimeContextImpl
          Implementation of a RuntimeContext that forms the foundation for a Tuscany environment.
 

Methods in org.apache.tuscany.core.runtime that return CompositeContext
 CompositeContext RuntimeContextImpl.getParent()
           
 CompositeContext RuntimeContext.getRootContext()
          Returns the context that forms the root of the user component tree.
 CompositeContext RuntimeContextImpl.getRootContext()
           
 

Methods in org.apache.tuscany.core.runtime with parameters of type CompositeContext
 void RuntimeContextImpl.setParent(CompositeContext parent)
           
 

Uses of CompositeContext in org.apache.tuscany.core.system.config
 

Methods in org.apache.tuscany.core.system.config that return CompositeContext
 CompositeContext SystemContextFactory.getCurrentContext()
           
 CompositeContext SystemEntryPointContextFactory.getCurrentContext()
           
 CompositeContext SystemExternalServiceContextFactory.getCurrentContext()
           
 

Methods in org.apache.tuscany.core.system.config with parameters of type CompositeContext
 void SystemContextFactory.prepare(CompositeContext parent)
           
 void SystemEntryPointContextFactory.prepare(CompositeContext parent)
           
 void SystemExternalServiceContextFactory.prepare(CompositeContext parent)
           
 void SystemObjectContextFactory.prepare(CompositeContext parent)
           
 

Uses of CompositeContext in org.apache.tuscany.core.system.context
 

Classes in org.apache.tuscany.core.system.context that implement CompositeContext
 class SystemCompositeContextImpl
          Implements an composite context for system components.
 

Constructors in org.apache.tuscany.core.system.context with parameters of type CompositeContext
SystemCompositeContextImpl(java.lang.String name, CompositeContext parent, AutowireContext autowire, ScopeStrategy strategy, EventContext ctx, ConfigurationContext configCtx)
           
 

Uses of CompositeContext in org.apache.tuscany.core.wire.impl
 

Constructors in org.apache.tuscany.core.wire.impl with parameters of type CompositeContext
NullWireFactory(java.lang.String componentName, CompositeContext parentContext)
           
 


Tuscany Core

-