Package org.glassfish.jersey.internal
Class InternalProperties
- java.lang.Object
-
- org.glassfish.jersey.internal.InternalProperties
-
public class InternalProperties extends java.lang.Object
Internal common (server/client) Jersey configuration properties.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
JSON_FEATURE
This property should be set by configured JSON feature to indicate that other (registered but not configured) JSON features should not be configured.static java.lang.String
JSON_FEATURE_CLIENT
Client-specific version ofJSON_FEATURE
.static java.lang.String
JSON_FEATURE_SERVER
Server-specific version ofJSON_FEATURE
.
-
Constructor Summary
Constructors Modifier Constructor Description private
InternalProperties()
Prevent instantiation.
-
-
-
Field Detail
-
JSON_FEATURE
public static final java.lang.String JSON_FEATURE
This property should be set by configured JSON feature to indicate that other (registered but not configured) JSON features should not be configured. The name of the configuration property is "jersey.config.jsonFeature".- Since:
- 2.9
- See Also:
- Constant Field Values
-
JSON_FEATURE_CLIENT
public static final java.lang.String JSON_FEATURE_CLIENT
Client-specific version ofJSON_FEATURE
. If present, it overrides the generic one for the client environment.- Since:
- 2.9
- See Also:
- Constant Field Values
-
JSON_FEATURE_SERVER
public static final java.lang.String JSON_FEATURE_SERVER
Server-specific version ofJSON_FEATURE
. If present, it overrides the generic one for the server environment.- Since:
- 2.9
- See Also:
- Constant Field Values
-
-