public class EncodingFeature extends Object implements Feature
EncodingFilter and the specified set of
encoding providers to the
client configuration. It also allows
setting the value of ClientProperties.USE_ENCODING property.| Constructor and Description |
|---|
EncodingFeature(Class<?>... encodingProviders)
Create a new instance of the feature.
|
EncodingFeature(String useEncoding,
Class<?>... encoders)
Create a new instance of the feature specifying the default value for the
ClientProperties.USE_ENCODING property. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
configure(FeatureContext context)
A call-back method called when the feature is to be enabled in a given
runtime configuration scope.
|
public EncodingFeature(Class<?>... encodingProviders)
encodingProviders - Encoding providers to be registered in the client configuration.public EncodingFeature(String useEncoding, Class<?>... encoders)
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.useEncoding - Default value of ClientProperties.USE_ENCODING property.encoders - Encoders to be registered in the client configuration.public boolean configure(FeatureContext context)
Featuretrue if the feature was successfully enabled or false otherwise.
Note that under some circumstances the feature may decide not to enable itself, which
is indicated by returning false. In such case the configuration context does
not add the feature to the collection of enabled features and a subsequent call to
Configuration.isEnabled(Feature) or Configuration.isEnabled(Class) method
would return false.
Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.