Class ApacheTransporterConfigurationKeys
- java.lang.Object
-
- org.eclipse.aether.transport.apache.ApacheTransporterConfigurationKeys
-
public final class ApacheTransporterConfigurationKeys extends java.lang.Object
Configuration for Apache Transport.- Since:
- 2.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONFIG_PROP_CIPHER_SUITESComma-separated list of Cipher Suites which are enabled for HTTPS connections.static java.lang.StringCONFIG_PROP_FOLLOW_REDIRECTSIf enabled, Apache HttpClient will follow HTTP redirects.static java.lang.StringCONFIG_PROP_HTTP_RETRY_HANDLER_NAMEThe name of retryHandler, supported values are “standard”, that obeys RFC-2616, regarding idempotent methods, and “default” that considers requests w/o payload as idempotent.static java.lang.StringCONFIG_PROP_HTTP_RETRY_HANDLER_REQUEST_SENT_ENABLEDSet to true if it is acceptable to retry non-idempotent requests, that have been sent.static java.lang.StringCONFIG_PROP_MAX_REDIRECTSThe max redirect count to follow.static java.lang.StringCONFIG_PROP_PROTOCOLSComma-separated list of Protocols which are enabled for HTTPS connections.static java.lang.StringCONFIG_PROP_USE_SYSTEM_PROPERTIESIf enabled, underlying Apache HttpClient will use system properties as well to configure itself (typically used to set up HTTP Proxy via Java system properties).static booleanDEFAULT_FOLLOW_REDIRECTSstatic booleanDEFAULT_HTTP_RETRY_HANDLER_REQUEST_SENT_ENABLEDstatic intDEFAULT_MAX_REDIRECTSstatic booleanDEFAULT_USE_SYSTEM_PROPERTIESstatic java.lang.StringHTTP_RETRY_HANDLER_NAME_DEFAULTstatic java.lang.StringHTTP_RETRY_HANDLER_NAME_STANDARD
-
-
-
Field Detail
-
CONFIG_PROP_USE_SYSTEM_PROPERTIES
public static final java.lang.String CONFIG_PROP_USE_SYSTEM_PROPERTIES
If enabled, underlying Apache HttpClient will use system properties as well to configure itself (typically used to set up HTTP Proxy via Java system properties). See HttpClientBuilder for used properties. This mode is not recommended, better use documented ways of configuration instead.- See Also:
- Constant Field Values
-
DEFAULT_USE_SYSTEM_PROPERTIES
public static final boolean DEFAULT_USE_SYSTEM_PROPERTIES
- See Also:
- Constant Field Values
-
CONFIG_PROP_HTTP_RETRY_HANDLER_NAME
public static final java.lang.String CONFIG_PROP_HTTP_RETRY_HANDLER_NAME
The name of retryHandler, supported values are “standard”, that obeys RFC-2616, regarding idempotent methods, and “default” that considers requests w/o payload as idempotent.- See Also:
- Constant Field Values
-
HTTP_RETRY_HANDLER_NAME_STANDARD
public static final java.lang.String HTTP_RETRY_HANDLER_NAME_STANDARD
- See Also:
- Constant Field Values
-
HTTP_RETRY_HANDLER_NAME_DEFAULT
public static final java.lang.String HTTP_RETRY_HANDLER_NAME_DEFAULT
- See Also:
- Constant Field Values
-
CONFIG_PROP_HTTP_RETRY_HANDLER_REQUEST_SENT_ENABLED
public static final java.lang.String CONFIG_PROP_HTTP_RETRY_HANDLER_REQUEST_SENT_ENABLED
Set to true if it is acceptable to retry non-idempotent requests, that have been sent.- See Also:
- Constant Field Values
-
DEFAULT_HTTP_RETRY_HANDLER_REQUEST_SENT_ENABLED
public static final boolean DEFAULT_HTTP_RETRY_HANDLER_REQUEST_SENT_ENABLED
- See Also:
- Constant Field Values
-
CONFIG_PROP_CIPHER_SUITES
public static final java.lang.String CONFIG_PROP_CIPHER_SUITES
Comma-separated list of Cipher Suites which are enabled for HTTPS connections.- Since:
- 2.0.0
- See Also:
- Constant Field Values
-
CONFIG_PROP_PROTOCOLS
public static final java.lang.String CONFIG_PROP_PROTOCOLS
Comma-separated list of Protocols which are enabled for HTTPS connections.- Since:
- 2.0.0
- See Also:
- Constant Field Values
-
CONFIG_PROP_FOLLOW_REDIRECTS
public static final java.lang.String CONFIG_PROP_FOLLOW_REDIRECTS
If enabled, Apache HttpClient will follow HTTP redirects.- Since:
- 2.0.2
- See Also:
- Constant Field Values
-
DEFAULT_FOLLOW_REDIRECTS
public static final boolean DEFAULT_FOLLOW_REDIRECTS
- See Also:
- Constant Field Values
-
CONFIG_PROP_MAX_REDIRECTS
public static final java.lang.String CONFIG_PROP_MAX_REDIRECTS
The max redirect count to follow.- Since:
- 2.0.2
- See Also:
- Constant Field Values
-
DEFAULT_MAX_REDIRECTS
public static final int DEFAULT_MAX_REDIRECTS
- See Also:
- Constant Field Values
-
-