Tuscany Core

Uses of Interface
org.apache.tuscany.core.builder.ContextFactory

Packages that use ContextFactory
org.apache.tuscany.core.context   
org.apache.tuscany.core.context.impl   
org.apache.tuscany.core.context.scope   
org.apache.tuscany.core.extension   
org.apache.tuscany.core.system.config   
 

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

Methods in org.apache.tuscany.core.context with parameters of type ContextFactory
 void ScopeContext.registerFactory(ContextFactory<Context> configuration)
          Adds a context factory to the scope
 

Method parameters in org.apache.tuscany.core.context with type arguments of type ContextFactory
 void ScopeContext.registerFactories(List<ContextFactory<Context>> configurations)
          Registers the context factory used to construct instance contexts for the scope
 

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

Fields in org.apache.tuscany.core.context.impl with type parameters of type ContextFactory
protected  Map<String,ContextFactory<Context>> AbstractCompositeContext.configurations
           
 

Methods in org.apache.tuscany.core.context.impl with parameters of type ContextFactory
protected  void AbstractCompositeContext.buildTarget(ContextFactory<?> target)
          Signals to target side of reference configurations to initialize
protected  void AbstractCompositeContext.registerConfiguration(ContextFactory<Context> factory)
           
protected  void AbstractCompositeContext.wireSource(ContextFactory<Context> source)
          Iterates through references and delegates to the configuration context to wire them to their targets
 

Uses of ContextFactory in org.apache.tuscany.core.context.scope
 

Fields in org.apache.tuscany.core.context.scope with type parameters of type ContextFactory
protected  Map<String,ContextFactory<Context>> AbstractScopeContext.contextFactories
           
 

Methods in org.apache.tuscany.core.context.scope with parameters of type ContextFactory
 void ModuleScopeContext.registerFactory(ContextFactory<Context> configuration)
           
 void RequestScopeContext.registerFactory(ContextFactory<Context> configuration)
           
 void CompositeScopeContext.registerFactory(ContextFactory<Context> configuration)
           
 void SessionScopeContext.registerFactory(ContextFactory<Context> configuration)
           
 void StatelessScopeContext.registerFactory(ContextFactory<Context> configuration)
           
 

Method parameters in org.apache.tuscany.core.context.scope with type arguments of type ContextFactory
 void CompositeScopeContext.registerFactories(List<ContextFactory<Context>> configurations)
           
 void AbstractScopeContext.registerFactories(List<ContextFactory<Context>> configurations)
           
 

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

Classes in org.apache.tuscany.core.extension with type parameters of type ContextFactory
 class WireBuilderSupport<T extends ContextFactory<?>>
          A base class for WireBuilder implementations
 

Classes in org.apache.tuscany.core.extension that implement ContextFactory
 class EntryPointContextFactory
          Default factory for contexts that represent entry points.
 class ExternalServiceContextFactory
          A template implementation that creates instances of ExternalServiceContext configured with the appropriate wire chains and bindings.
 

Methods in org.apache.tuscany.core.extension that return ContextFactory
protected abstract  ContextFactory ContextFactoryBuilderSupport.createContextFactory(String componentName, T implementation, Scope scope)
          Subclasses must implement, returning a context factory appropriate to the component implementation
 

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

Classes in org.apache.tuscany.core.system.config that implement ContextFactory
 class SystemContextFactory
          A ContextFactory that handles system component implementation types, which may be either simple, leaf types or an composites.
 class SystemEntryPointContextFactory
          Creates SystemEntryPointContext instances based on an entry point configuration in an assembly model
 class SystemExternalServiceContextFactory
          Creates system type external service contexts
 class SystemObjectContextFactory
          A ContextFactory that contains the configuration needed to convert a simple Java Object into a component.
 


Tuscany Core

-