Class JavaNetHttpClientProperties
- java.lang.Object
-
- org.glassfish.jersey.jnh.connector.JavaNetHttpClientProperties
-
public class JavaNetHttpClientProperties extends Object
Provides configuration properties for aJavaNetHttpConnector.- Author:
- Steffen Nießing
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOOKIE_HANDLERConfiguration of theCookieHandlerthat should be used by theHttpClient.static StringSSL_PARAMETERSConfiguration of SSL parameters used by theHttpClient.
-
-
-
Field Detail
-
COOKIE_HANDLER
public static final String COOKIE_HANDLER
Configuration of the
CookieHandlerthat should be used by theHttpClient. If this option is not set,HttpClient.cookieHandler()will return an emptyOptionaland therefore no cookie handler will be used.A provided value to this option has to be of type
CookieHandler.The name of the configuration property is "jersey.config.jnh.client.cookieHandler".
- See Also:
- Constant Field Values
-
SSL_PARAMETERS
public static final String SSL_PARAMETERS
Configuration of SSL parameters used by the
HttpClient. If this option is not set, then theHttpClientwill useimplementation specific default values.A provided value to this option has to be of type
SSLParameters.The name of the configuration property is "jersey.config.jnh.client.sslParameters".
- See Also:
- Constant Field Values
-
-