Apache CXF API

Uses of Class
org.apache.cxf.feature.AbstractFeature

Packages that use AbstractFeature
org.apache.cxf Contains the Bus, which is the central touch point of CXF, and its related classes. 
org.apache.cxf.binding.coloc.feature   
org.apache.cxf.bus   
org.apache.cxf.bus.spring   
org.apache.cxf.clustering   
org.apache.cxf.databinding.stax   
org.apache.cxf.endpoint Client and Server related classes. 
org.apache.cxf.feature   
org.apache.cxf.frontend   
org.apache.cxf.interceptor Core interceptor interfaces which form the basis for message processing chains in CXF. 
org.apache.cxf.javascript   
org.apache.cxf.jaxws   
org.apache.cxf.jaxws.support   
org.apache.cxf.management.interceptor   
org.apache.cxf.service.factory   
org.apache.cxf.transport.common.gzip   
org.apache.cxf.transport.https   
org.apache.cxf.transport.jms   
org.apache.cxf.ws.addressing   
org.apache.cxf.ws.policy   
org.apache.cxf.ws.policy.blueprint   
org.apache.cxf.ws.rm   
org.apache.cxf.ws.rm.feature   
org.apache.cxf.ws.security.trust   
 

Uses of AbstractFeature in org.apache.cxf
 

Methods in org.apache.cxf that return types with arguments of type AbstractFeature
 Collection<AbstractFeature> Bus.getFeatures()
           
 

Uses of AbstractFeature in org.apache.cxf.binding.coloc.feature
 

Subclasses of AbstractFeature in org.apache.cxf.binding.coloc.feature
 class ColocFeature
           
 

Uses of AbstractFeature in org.apache.cxf.bus
 

Methods in org.apache.cxf.bus that return types with arguments of type AbstractFeature
 Collection<AbstractFeature> CXFBusImpl.getFeatures()
           
 

Method parameters in org.apache.cxf.bus with type arguments of type AbstractFeature
 void CXFBusImpl.setFeatures(Collection<AbstractFeature> features)
           
 

Uses of AbstractFeature in org.apache.cxf.bus.spring
 

Methods in org.apache.cxf.bus.spring that return types with arguments of type AbstractFeature
 Collection<AbstractFeature> BusDefinitionParser.BusConfig.getFeatures()
           
 

Method parameters in org.apache.cxf.bus.spring with type arguments of type AbstractFeature
 void BusDefinitionParser.BusConfig.setFeatures(Collection<AbstractFeature> features)
           
 

Uses of AbstractFeature in org.apache.cxf.clustering
 

Subclasses of AbstractFeature in org.apache.cxf.clustering
 class FailoverFeature
          This feature may be applied to a Client so as to enable failover from the initial target endpoint to any other compatible endpoint for the target service.
 class LoadDistributorFeature
          This feature may be applied to a Client so as to enable load distribution amongst a set of target endpoints or addresses Note that this feature changes the conduit on the fly and thus makes the Client not thread safe.
 

Uses of AbstractFeature in org.apache.cxf.databinding.stax
 

Subclasses of AbstractFeature in org.apache.cxf.databinding.stax
 class StaxDataBindingFeature
           
 

Uses of AbstractFeature in org.apache.cxf.endpoint
 

Fields in org.apache.cxf.endpoint with type parameters of type AbstractFeature
protected  List<AbstractFeature> AbstractEndpointFactory.features
           
 

Methods in org.apache.cxf.endpoint that return types with arguments of type AbstractFeature
 List<AbstractFeature> Endpoint.getActiveFeatures()
           
 List<AbstractFeature> EndpointImpl.getActiveFeatures()
           
 List<AbstractFeature> AbstractEndpointFactory.getFeatures()
           
 

Method parameters in org.apache.cxf.endpoint with type arguments of type AbstractFeature
 void EndpointImpl.initializeActiveFeatures(List<AbstractFeature> features)
           
 void AbstractEndpointFactory.setFeatures(List<AbstractFeature> features)
           
 

Uses of AbstractFeature in org.apache.cxf.feature
 

Subclasses of AbstractFeature in org.apache.cxf.feature
 class FastInfosetFeature
           ]]>
 class LoggingFeature
          This class is used to control message-on-the-wire logging.
 class StaxTransformFeature
           ]]>
 class WrappedFeature
          A Feature is something that is able to customize a Server, Client, or Bus, typically adding capabilities.
 

Method parameters in org.apache.cxf.feature with type arguments of type AbstractFeature
static
<T> T
AbstractFeature.getActive(List<AbstractFeature> features, Class<T> type)
          Convenience method to extract a feature by type from an active list.
 

Uses of AbstractFeature in org.apache.cxf.frontend
 

Methods in org.apache.cxf.frontend that return types with arguments of type AbstractFeature
 List<AbstractFeature> ClientProxyFactoryBean.getFeatures()
           
 

Method parameters in org.apache.cxf.frontend with type arguments of type AbstractFeature
 void ClientProxyFactoryBean.setFeatures(List<AbstractFeature> f)
           
 

Uses of AbstractFeature in org.apache.cxf.interceptor
 

Methods in org.apache.cxf.interceptor that return types with arguments of type AbstractFeature
 List<AbstractFeature> AnnotationInterceptors.getFeatures()
           
 

Uses of AbstractFeature in org.apache.cxf.javascript
 

Subclasses of AbstractFeature in org.apache.cxf.javascript
 class JavascriptOptionsFeature
          This class provides configuration options to the JavaScript client generator.
 

Uses of AbstractFeature in org.apache.cxf.jaxws
 

Methods in org.apache.cxf.jaxws that return types with arguments of type AbstractFeature
 List<AbstractFeature> EndpointImpl.getFeatures()
           
 

Method parameters in org.apache.cxf.jaxws with type arguments of type AbstractFeature
 void EndpointImpl.setFeatures(List<AbstractFeature> features)
           
 

Uses of AbstractFeature in org.apache.cxf.jaxws.support
 

Methods in org.apache.cxf.jaxws.support that return types with arguments of type AbstractFeature
 List<AbstractFeature> JaxWsEndpointImpl.getFeatures()
           
 

Constructor parameters in org.apache.cxf.jaxws.support with type arguments of type AbstractFeature
JaxWsEndpointImpl(Bus bus, Service s, EndpointInfo ei, JaxWsImplementorInfo implementorInfo, List<javax.xml.ws.WebServiceFeature> wf, List<AbstractFeature> af, boolean isFromWsdl)
           
 

Uses of AbstractFeature in org.apache.cxf.management.interceptor
 

Subclasses of AbstractFeature in org.apache.cxf.management.interceptor
 class ResponseTimeFeature
           
 

Uses of AbstractFeature in org.apache.cxf.service.factory
 

Methods in org.apache.cxf.service.factory that return types with arguments of type AbstractFeature
 List<AbstractFeature> ReflectionServiceFactoryBean.getFeatures()
           
 

Method parameters in org.apache.cxf.service.factory with type arguments of type AbstractFeature
 void ReflectionServiceFactoryBean.setFeatures(List<AbstractFeature> f)
           
 

Uses of AbstractFeature in org.apache.cxf.transport.common.gzip
 

Subclasses of AbstractFeature in org.apache.cxf.transport.common.gzip
 class GZIPFeature
          This class is used to control GZIP compression of messages.
 

Uses of AbstractFeature in org.apache.cxf.transport.https
 

Subclasses of AbstractFeature in org.apache.cxf.transport.https
 class CertConstraintsFeature
           .*CN=(Bethal|Gordy).* .*O=ApacheTest.* .........
 

Uses of AbstractFeature in org.apache.cxf.transport.jms
 

Subclasses of AbstractFeature in org.apache.cxf.transport.jms
 class JMSConfigFeature
          Allows to configure the JMSConfiguration directly at the Client or Server.
 

Uses of AbstractFeature in org.apache.cxf.ws.addressing
 

Subclasses of AbstractFeature in org.apache.cxf.ws.addressing
 class WSAddressingFeature
           
 

Uses of AbstractFeature in org.apache.cxf.ws.policy
 

Subclasses of AbstractFeature in org.apache.cxf.ws.policy
 class WSPolicyFeature
          Configures a Server, Client, Bus with the specified policies.
 

Uses of AbstractFeature in org.apache.cxf.ws.policy.blueprint
 

Subclasses of AbstractFeature in org.apache.cxf.ws.policy.blueprint
static class PolicyEngineBPDefinitionParser.PolicyEngineConfig
           
 

Uses of AbstractFeature in org.apache.cxf.ws.rm
 

Methods in org.apache.cxf.ws.rm that return types with arguments of type AbstractFeature
 List<AbstractFeature> WrappedEndpoint.getActiveFeatures()
           
 

Uses of AbstractFeature in org.apache.cxf.ws.rm.feature
 

Subclasses of AbstractFeature in org.apache.cxf.ws.rm.feature
 class RMFeature
           
 

Uses of AbstractFeature in org.apache.cxf.ws.security.trust
 

Fields in org.apache.cxf.ws.security.trust with type parameters of type AbstractFeature
protected  List<AbstractFeature> STSClient.features
           
 

Methods in org.apache.cxf.ws.security.trust that return types with arguments of type AbstractFeature
 List<AbstractFeature> STSClient.getFeatures()
           
 

Method parameters in org.apache.cxf.ws.security.trust with type arguments of type AbstractFeature
 void STSClient.setFeatures(List<AbstractFeature> f)
           
 


Apache CXF API

Apache CXF