Apache CXF API

Uses of Interface
org.apache.cxf.feature.Feature

Packages that use Feature
org.apache.cxf   
org.apache.cxf.binding.coloc.feature   
org.apache.cxf.bus.extension   
org.apache.cxf.bus.spring   
org.apache.cxf.clustering   
org.apache.cxf.databinding.stax   
org.apache.cxf.endpoint   
org.apache.cxf.feature   
org.apache.cxf.feature.transform   
org.apache.cxf.feature.validation   
org.apache.cxf.frontend   
org.apache.cxf.interceptor   
org.apache.cxf.javascript   
org.apache.cxf.jaxrs.client   
org.apache.cxf.jaxrs.spring   
org.apache.cxf.jaxrs.swagger   
org.apache.cxf.jaxrs.validation   
org.apache.cxf.jaxws   
org.apache.cxf.jaxws.support   
org.apache.cxf.management.interceptor   
org.apache.cxf.transport.common.gzip   
org.apache.cxf.transport.https   
org.apache.cxf.transport.jms   
org.apache.cxf.validation   
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   
org.apache.cxf.wsdl.service.factory   
 

Uses of Feature in org.apache.cxf
 

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

Method parameters in org.apache.cxf with type arguments of type Feature
 void Bus.setFeatures(Collection<? extends Feature> features)
           
 

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

Classes in org.apache.cxf.binding.coloc.feature that implement Feature
 class ColocFeature
           
 

Uses of Feature in org.apache.cxf.bus.extension
 

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

Method parameters in org.apache.cxf.bus.extension with type arguments of type Feature
 void ExtensionManagerBus.setFeatures(Collection<? extends Feature> features)
           
 

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

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

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

Uses of Feature in org.apache.cxf.clustering
 

Classes in org.apache.cxf.clustering that implement Feature
 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 Feature in org.apache.cxf.databinding.stax
 

Classes in org.apache.cxf.databinding.stax that implement Feature
 class StaxDataBindingFeature
           
 

Uses of Feature in org.apache.cxf.endpoint
 

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

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

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

Uses of Feature in org.apache.cxf.feature
 

Classes in org.apache.cxf.feature that implement Feature
 class AbstractFeature
          A Feature is something that is able to customize a Server, Client, or Bus, typically adding capabilities.
 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 Feature
static
<T> T
AbstractFeature.getActive(List<? extends Feature> features, Class<T> type)
          Convenience method to extract a feature by type from an active list.
 

Constructors in org.apache.cxf.feature with parameters of type Feature
WrappedFeature(Feature f)
           
 

Uses of Feature in org.apache.cxf.feature.transform
 

Classes in org.apache.cxf.feature.transform that implement Feature
 class XSLTFeature
          This class defines a feature is used to transform message using XSLT script.
 

Uses of Feature in org.apache.cxf.feature.validation
 

Classes in org.apache.cxf.feature.validation that implement Feature
 class SchemaValidationFeature
          A feature to configure schema validation at the operation level, as an alternative to using the @SchemaValidation annotation.
 

Uses of Feature in org.apache.cxf.frontend
 

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

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

Uses of Feature in org.apache.cxf.interceptor
 

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

Uses of Feature in org.apache.cxf.javascript
 

Classes in org.apache.cxf.javascript that implement Feature
 class JavascriptOptionsFeature
          This class provides configuration options to the JavaScript client generator.
 

Uses of Feature in org.apache.cxf.jaxrs.client
 

Method parameters in org.apache.cxf.jaxrs.client with type arguments of type Feature
static
<T> T
JAXRSClientFactory.create(String baseAddress, Class<T> cls, List<?> providers, List<Feature> features, String configLocation)
          Creates a proxy
static WebClient WebClient.create(String baseAddress, List<?> providers, List<? extends Feature> features, String configLocation)
          Creates WebClient with a list of custom features
 

Uses of Feature in org.apache.cxf.jaxrs.spring
 

Methods in org.apache.cxf.jaxrs.spring that return types with arguments of type Feature
protected  List<Feature> AbstractSpringConfigurationFactory.getFeatures()
           
 

Uses of Feature in org.apache.cxf.jaxrs.swagger
 

Classes in org.apache.cxf.jaxrs.swagger that implement Feature
 class SwaggerFeature
           
 

Uses of Feature in org.apache.cxf.jaxrs.validation
 

Classes in org.apache.cxf.jaxrs.validation that implement Feature
 class JAXRSBeanValidationFeature
           
 

Uses of Feature in org.apache.cxf.jaxws
 

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

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

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

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

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

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

Classes in org.apache.cxf.management.interceptor that implement Feature
 class ResponseTimeFeature
           
 

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

Classes in org.apache.cxf.transport.common.gzip that implement Feature
 class GZIPFeature
          This class is used to control GZIP compression of messages.
 

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

Classes in org.apache.cxf.transport.https that implement Feature
 class CertConstraintsFeature
           .*CN=(Bethal|Gordy).* .*O=ApacheTest.* .........
 

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

Classes in org.apache.cxf.transport.jms that implement Feature
 class ConnectionFactoryFeature
          Allows to configure the JMSConfiguration directly at the Client or Server.
 class JMSConfigFeature
          Allows to configure the JMSConfiguration directly at the Client or Server.
 

Uses of Feature in org.apache.cxf.validation
 

Classes in org.apache.cxf.validation that implement Feature
 class BeanValidationFeature
           
 

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

Classes in org.apache.cxf.ws.addressing that implement Feature
 class WSAddressingFeature
           
 

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

Classes in org.apache.cxf.ws.policy that implement Feature
 class WSPolicyFeature
          Configures a Server, Client, Bus with the specified policies.
 

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

Classes in org.apache.cxf.ws.policy.blueprint that implement Feature
static class PolicyEngineBPDefinitionParser.PolicyEngineConfig
           
 

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

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

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

Classes in org.apache.cxf.ws.rm.feature that implement Feature
 class RMFeature
           
 

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

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

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

Method parameters in org.apache.cxf.ws.security.trust with type arguments of type Feature
 void AbstractSTSClient.setFeatures(List<? extends Feature> f)
           
 

Uses of Feature in org.apache.cxf.wsdl.service.factory
 

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

Method parameters in org.apache.cxf.wsdl.service.factory with type arguments of type Feature
 void ReflectionServiceFactoryBean.setFeatures(List<? extends Feature> features2)
           
 


Apache CXF API

Apache CXF