Uses of Interface
javax.ws.rs.core.Feature

Packages that use Feature
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
org.glassfish.jersey.client Jersey client-side classes. 
org.glassfish.jersey.client.filter Provides core client filters. 
org.glassfish.jersey.model.internal   
org.glassfish.jersey.server Jersey server-side classes. 
 

Uses of Feature in javax.ws.rs.core
 

Methods in javax.ws.rs.core that return types with arguments of type Feature
 java.util.Collection<Feature> Configurable.getFeatures()
          Get the immutable set of configured features.
 

Uses of Feature in org.glassfish.jersey.client
 

Classes in org.glassfish.jersey.client that implement Feature
 class CustomProvidersFeature
          Feature to provide the single-line registration of custom providers.
 

Methods in org.glassfish.jersey.client that return types with arguments of type Feature
 java.util.Collection<Feature> ClientConfig.getFeatures()
           
 

Uses of Feature in org.glassfish.jersey.client.filter
 

Classes in org.glassfish.jersey.client.filter that implement Feature
 class EncodingFeature
          Feature that configures support for content encodings on the client side.
 

Uses of Feature in org.glassfish.jersey.model.internal
 

Methods in org.glassfish.jersey.model.internal that return Feature
 Feature FeatureBag.RegisteredFeature.getFeature()
           
 

Methods in org.glassfish.jersey.model.internal that return types with arguments of type Feature
 java.util.Set<Feature> FeatureBag.getEnabledFeatures()
          Returns a set of already enabled features.
 java.lang.Class<? extends Feature> FeatureBag.RegisteredFeature.getFeatureClass()
           
 java.util.Collection<Feature> FeatureConfig.getFeatures()
           
 java.util.Collection<Feature> DefaultConfig.getFeatures()
           
 

Methods in org.glassfish.jersey.model.internal with parameters of type Feature
 boolean FeatureBag.Builder.add(Feature feature)
          Adds a feature instance to the list of features.
 boolean FeatureBag.isEnabled(Feature feature)
          Indicates whether the given feature is already enabled or not.
 void FeatureBag.setEnabled(Feature feature)
           
 

Method parameters in org.glassfish.jersey.model.internal with type arguments of type Feature
 boolean FeatureBag.Builder.add(java.lang.Class<? extends Feature> featureClass)
          Adds a feature class to the list of features.
 boolean FeatureBag.isEnabled(java.lang.Class<? extends Feature> featureClass)
          Indicates whether any feature of given featureClass is already enabled or not.
 boolean DefaultConfig.isEnabled(java.lang.Class<? extends Feature> featureClass)
          Indicates whether is the given feature enabled in this Configurable or not.
 

Constructors in org.glassfish.jersey.model.internal with parameters of type Feature
FeatureBag.RegisteredFeature(java.lang.Class<? extends Feature> featureClass, Feature feature)
           
 

Constructor parameters in org.glassfish.jersey.model.internal with type arguments of type Feature
FeatureBag.RegisteredFeature(java.lang.Class<? extends Feature> featureClass, Feature feature)
           
 

Uses of Feature in org.glassfish.jersey.server
 

Methods in org.glassfish.jersey.server that return types with arguments of type Feature
 java.util.Collection<Feature> ResourceConfig.getFeatures()
           
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.