org.glassfish.jersey.client.filter
Class EncodingFeature

java.lang.Object
  extended by org.glassfish.jersey.client.filter.EncodingFeature
All Implemented Interfaces:
Feature

public class EncodingFeature
extends java.lang.Object
implements Feature

Feature that configures support for content encodings on the client side. This feature registers EncodingFilter and the specified set of encoding providers to the client configuration. It also allows setting the value of ClientProperties.USE_ENCODING property.

Author:
Martin Matula (martin.matula at oracle.com)

Constructor Summary
EncodingFeature(java.lang.Class<? extends ContentEncoder>... encodingProviders)
          Create a new instance of the feature.
EncodingFeature(java.lang.String useEncoding, java.lang.Class<? extends ContentEncoder>... encoders)
          Create a new instance of the feature specifying the default value for the ClientProperties.USE_ENCODING property.
 
Method Summary
 boolean configure(Configurable configuration)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EncodingFeature

public EncodingFeature(java.lang.Class<? extends ContentEncoder>... encodingProviders)
Create a new instance of the feature.

Parameters:
encodingProviders - Encoding providers to be registered in the client configuration.

EncodingFeature

public EncodingFeature(java.lang.String useEncoding,
                       java.lang.Class<? extends ContentEncoder>... encoders)
Create a new instance of the feature specifying the default value for the ClientProperties.USE_ENCODING property. Unless the value is set in the client configuration properties at the time when this feature gets enabled, the provided value will be used.

Parameters:
useEncoding - Default value of ClientProperties.USE_ENCODING property.
encoders - Encoders to be registered in the client configuration.
Method Detail

configure

public boolean configure(Configurable configuration)
Specified by:
configure in interface Feature


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