Uses of Interface
org.apache.cxf.common.util.factory.Factory

Packages that use Factory
org.apache.cxf.common.util.factory This package provides interfaces and classes for factory and pool functionality. 
org.apache.cxf.jaxws   
org.apache.cxf.service.invoker   
 

Uses of Factory in org.apache.cxf.common.util.factory
 

Classes in org.apache.cxf.common.util.factory that implement Factory
 class PooledFactory
          This class decorates a Factory object that uses a Pool strategy to cache the factory result;
 

Methods in org.apache.cxf.common.util.factory with parameters of type Factory
 java.lang.Object AbstractPool.getInstance(Factory factory)
           
 java.lang.Object Pool.getInstance(Factory factory)
          Apply the pooling strategy and return an instance from either the pool or the factory.
 java.lang.Object CachingPool.getInstance(Factory factory)
           
 java.lang.Object ThreadSingletonPool.getInstance(Factory factory)
           
 

Constructors in org.apache.cxf.common.util.factory with parameters of type Factory
PooledFactory(Factory factory, Pool pool)
           
 

Uses of Factory in org.apache.cxf.jaxws
 

Constructors in org.apache.cxf.jaxws with parameters of type Factory
JAXWSMethodInvoker(Factory factory)
           
JAXWSMethodInvoker(Factory factory, ScopePolicy scope)
           
 

Uses of Factory in org.apache.cxf.service.invoker
 

Classes in org.apache.cxf.service.invoker that implement Factory
 class LocalFactory
          The XFire implementation of Factory interface.
 

Methods in org.apache.cxf.service.invoker that return Factory
 Factory RequestScopePolicy.applyScope(Factory f, Exchange ex)
           
 Factory ScopePolicy.applyScope(Factory f, Exchange exchange)
          Apply scope policy to a Factory object so that the instance created by the Factory object can be cached properly.
 Factory ApplicationScopePolicy.applyScope(Factory f, Exchange ex)
           
 Factory SessionScopePolicy.applyScope(Factory f, Exchange ex)
           
 

Methods in org.apache.cxf.service.invoker with parameters of type Factory
 Factory RequestScopePolicy.applyScope(Factory f, Exchange ex)
           
 Factory ScopePolicy.applyScope(Factory f, Exchange exchange)
          Apply scope policy to a Factory object so that the instance created by the Factory object can be cached properly.
 Factory ApplicationScopePolicy.applyScope(Factory f, Exchange ex)
           
 Factory SessionScopePolicy.applyScope(Factory f, Exchange ex)
           
 

Constructors in org.apache.cxf.service.invoker with parameters of type Factory
FactoryInvoker(Factory factory, ScopePolicy scope)
          Create a FactoryInvoker object.
 



Apache CXF