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

Packages that use Configurable
javax.ws.rs.client The JAX-RS client API 
javax.ws.rs.container Container-specific JAX-RS API. 
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.internal.inject Common Jersey internal injection utility classes. 
org.glassfish.jersey.message Common Jersey messaging classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
org.glassfish.jersey.model.internal   
org.glassfish.jersey.server.filter Provides core server filters. 
org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes. 
 

Uses of Configurable in javax.ws.rs.client
 

Subinterfaces of Configurable in javax.ws.rs.client
 interface Configuration
          Represents inheritable configuration of the main client-side JAX-RS components, such as Client, WebTarget, Invocation Builder or Invocation.
 

Methods in javax.ws.rs.client with parameters of type Configurable
protected abstract  Client ClientFactory.getClient(Configurable configuration)
          Get a new pre-configured client instance.
static Client ClientFactory.newClient(Configurable configuration)
          Create new configured client instance using the default client builder factory provided by the JAX-RS implementation provider.
 Configuration Configuration.updateFrom(Configurable configuration)
          Replace the existing configuration state with the configuration state of the externally provided configuration.
 

Uses of Configurable in javax.ws.rs.container
 

Methods in javax.ws.rs.container with parameters of type Configurable
 void DynamicFeature.configure(ResourceInfo resourceInfo, Configurable configurable)
          A callback method called by the JAX-RS runtime during the application deployment to register provider instances or classes in a configurable scope of a particular resource or sub-resource method; i.e.
 

Uses of Configurable in javax.ws.rs.core
 

Methods in javax.ws.rs.core that return Configurable
 Configurable Configurable.register(java.lang.Class<?> providerClass)
          Register a provider or a feature class to be instantiated and used in the scope of the configured instance.
 Configurable Configurable.register(java.lang.Class<?> providerClass, int bindingPriority)
          Register a provider or a feature class to be instantiated and used in the scope of the configured instance.
<T> Configurable
Configurable.register(java.lang.Class<T> providerClass, java.lang.Class<? super T>... contracts)
          Register a provider or a feature class to be instantiated and used in the scope of the configured instance.
<T> Configurable
Configurable.register(java.lang.Class<T> providerClass, int bindingPriority, java.lang.Class<? super T>... contracts)
          Register a provider or a feature class to be instantiated and used in the scope of the configured instance.
 Configurable Configurable.register(java.lang.Object provider)
          Register a provider or a feature ("singleton") instance to be used in the scope of the configured instance.
<T> Configurable
Configurable.register(java.lang.Object provider, java.lang.Class<? super T>... contracts)
          Register a provider or a feature ("singleton") instance to be used in the scope of the configured instance.
 Configurable Configurable.register(java.lang.Object provider, int bindingPriority)
          Register a provider or a feature ("singleton") instance to be used in the scope of the configured instance.
<T> Configurable
Configurable.register(java.lang.Object provider, int bindingPriority, java.lang.Class<? super T>... contracts)
          Register a provider or a feature ("singleton") instance to be used in the scope of the configured instance.
 Configurable Configurable.setProperties(java.util.Map<java.lang.String,?> properties)
          Set new configuration properties replacing all previously set properties.
 Configurable Configurable.setProperty(java.lang.String name, java.lang.Object value)
          Set the new configuration property, if already set, the existing value of the property will be updated.
 

Methods in javax.ws.rs.core with parameters of type Configurable
 boolean Feature.configure(Configurable configurable)
          A call-back method called when the feature is to be enabled in a given configurable scope.
 

Uses of Configurable in org.glassfish.jersey.client
 

Classes in org.glassfish.jersey.client that implement Configurable
 class ClientConfig
          Jersey implementation of JAX-RS client configuration contract.
 

Methods in org.glassfish.jersey.client with parameters of type Configurable
 boolean CustomProvidersFeature.configure(Configurable configuration)
           
protected  Client JerseyClientFactory.getClient(Configurable configuration)
           
 ClientConfig ClientConfig.updateFrom(Configurable configuration)
           
 

Constructors in org.glassfish.jersey.client with parameters of type Configurable
JerseyClient(Configurable configuration)
          Create a new Jersey client instance.
 

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

Methods in org.glassfish.jersey.client.filter with parameters of type Configurable
 boolean EncodingFeature.configure(Configurable configuration)
           
 

Uses of Configurable in org.glassfish.jersey.internal.inject
 

Methods in org.glassfish.jersey.internal.inject with parameters of type Configurable
static void ProviderBinder.configureFeatures(FeatureBag featureBag, Configurable configuration, ServiceLocator locator)
          Enable features from the feature bag.
 

Uses of Configurable in org.glassfish.jersey.message
 

Constructors in org.glassfish.jersey.message with parameters of type Configurable
DeflateEncoder(Configurable config)
          Initialize DeflateEncoder.
 

Uses of Configurable in org.glassfish.jersey.message.internal
 

Methods in org.glassfish.jersey.message.internal with parameters of type Configurable
 void AbstractJaxbProvider.setConfiguration(Configurable config)
           
 

Constructors in org.glassfish.jersey.message.internal with parameters of type Configurable
DocumentBuilderFactoryInjectionProvider(Configurable config)
          Create new document builder factory provider.
MessageBodyFactory(ServiceLocator locator, Configurable configurable)
          Create new message body workers factory.
SaxParserFactoryInjectionProvider(Configurable config)
          Create new SAX parser factory provider.
TransformerFactoryInjectionProvider(Configurable config)
          Create new transformer factory provider.
XmlInputFactoryInjectionProvider(Configurable config)
          Create new XML input factory provider.
 

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

Classes in org.glassfish.jersey.model.internal that implement Configurable
 class DefaultConfig
          Common Configurable implementation for server and client.
 class FeatureConfig
           
 

Methods in org.glassfish.jersey.model.internal that return Configurable
 Configurable FeatureConfig.register(java.lang.Class<?> providerClass)
           
 Configurable DefaultConfig.register(java.lang.Class<?> providerClass)
           
 Configurable FeatureConfig.register(java.lang.Class<?> providerClass, int bindingPriority)
           
 Configurable DefaultConfig.register(java.lang.Class<?> providerClass, int bindingPriority)
           
<P> Configurable
DefaultConfig.register(java.lang.Class<P> providerClass, java.lang.Class<? super P>... contracts)
           
<P> Configurable
DefaultConfig.register(java.lang.Class<P> providerClass, int bindingPriority, java.lang.Class<? super P>... contracts)
           
<T> Configurable
FeatureConfig.register(java.lang.Class<T> providerClass, java.lang.Class<? super T>... contracts)
           
<T> Configurable
FeatureConfig.register(java.lang.Class<T> providerClass, int bindingPriority, java.lang.Class<? super T>... contracts)
           
 Configurable FeatureConfig.register(java.lang.Object provider)
           
 Configurable DefaultConfig.register(java.lang.Object provider)
           
<P> Configurable
DefaultConfig.register(java.lang.Object provider, java.lang.Class<? super P>... contracts)
           
<T> Configurable
FeatureConfig.register(java.lang.Object provider, java.lang.Class<? super T>... contracts)
           
 Configurable FeatureConfig.register(java.lang.Object provider, int bindingPriority)
           
 Configurable DefaultConfig.register(java.lang.Object provider, int bindingPriority)
           
<P> Configurable
DefaultConfig.register(java.lang.Object provider, int bindingPriority, java.lang.Class<? super P>... contracts)
           
<T> Configurable
FeatureConfig.register(java.lang.Object provider, int bindingPriority, java.lang.Class<? super T>... contracts)
           
 Configurable FeatureConfig.setProperties(java.util.Map<java.lang.String,?> properties)
           
 Configurable DefaultConfig.setProperties(java.util.Map<java.lang.String,?> properties)
           
 Configurable FeatureConfig.setProperty(java.lang.String name, java.lang.Object value)
           
 Configurable DefaultConfig.setProperty(java.lang.String name, java.lang.Object value)
           
 

Constructors in org.glassfish.jersey.model.internal with parameters of type Configurable
FeatureConfig(Configurable delegate)
           
 

Uses of Configurable in org.glassfish.jersey.server.filter
 

Methods in org.glassfish.jersey.server.filter with parameters of type Configurable
 void RolesAllowedDynamicFeature.configure(ResourceInfo resourceInfo, Configurable configurable)
           
 

Uses of Configurable in org.glassfish.jersey.server.model
 

Classes in org.glassfish.jersey.server.model that implement Configurable
 class ResourceMethodConfig
          Default config for resource methods.
 



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