Uses of Interface
javax.ws.rs.client.Configuration

Packages that use Configuration
javax.ws.rs.client The JAX-RS client API 
 

Uses of Configuration in javax.ws.rs.client
 

Methods in javax.ws.rs.client that return Configuration
 Configuration Invocation.configuration()
          Get access to the underlying configuration.
 Configuration Invocation.Builder.configuration()
          Get access to the underlying configuration.
 Configuration Target.configuration()
          Get access to the underlying configuration.
 Configuration Client.configuration()
          Get access to the underlying configuration of the client instance.
 Configuration Configuration.disable(Class<? extends Feature> feature)
          Disable a feature for the configurable instance using a feature class.
 Configuration Configuration.enable(Feature feature)
          Enable a feature.
 Configuration Configuration.register(Class<?> providerClass)
          Register a provider class to be instantiated and used in the scope of the configured instance.
 Configuration Configuration.register(Object provider)
          Register a provider ("singleton") instance to be used in the scope of the configured instance.
 Configuration Configuration.setProperties(Map<String,? extends Object> properties)
          Set new configuration properties replacing all previously set properties.
 Configuration Configuration.setProperty(String name, Object value)
          Set the new configuration property, if already set, the existing value of the property will be updated.
 Configuration Configuration.update(Configuration configuration)
          Replace the existing configuration state with the configuration state of the externally provided configuration.
 

Methods in javax.ws.rs.client with parameters of type Configuration
 C Client.Builder.build(Configuration configuration)
          Build a client instance using an initial configuration.
static Client ClientFactory.newClient(Configuration configuration)
          Create new configured client instance using the default client builder factory provided by the JAX-RS implementation provider.
 void Feature.onDisable(Configuration configuration)
          Called when the feature is disabled.
 void Feature.onEnable(Configuration configuration)
          Called when the feature is enabled.
 Configuration Configuration.update(Configuration configuration)
          Replace the existing configuration state with the configuration state of the externally provided configuration.
 



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