Class ConfigurationProperties

    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • PREFIX_CONNECTOR

        private static final java.lang.String PREFIX_CONNECTOR
        See Also:
        Constant Field Values
      • PREFIX_PRIORITY

        public static final java.lang.String PREFIX_PRIORITY
        The prefix for properties that control the priority of pluggable extensions like transporters. For example, for an extension with the fully qualified class name "org.eclipse.MyExtensionFactory", the configuration properties "aether.priority.org.eclipse.MyExtensionFactory", "aether.priority.MyExtensionFactory" and "aether.priority.MyExtension" will be consulted for the priority, in that order (obviously, the last key is only tried if the class name ends with "Factory"). The corresponding value is a float and the special value Float.NaN or "NaN" (case-sensitive) can be used to disable the extension.
        See Also:
        Constant Field Values
      • IMPLICIT_PRIORITIES

        public static final java.lang.String IMPLICIT_PRIORITIES
        A flag indicating whether the priorities of pluggable extensions are implicitly given by their iteration order such that the first extension has the highest priority. If set, an extension's built-in priority as well as any corresponding aether.priority.* configuration properties are ignored when searching for a suitable implementation among the available extensions. This priority mode is meant for cases where the application will present/inject extensions in the desired search order.
        See Also:
        DEFAULT_IMPLICIT_PRIORITIES, Constant Field Values
      • DEFAULT_USER_AGENT

        public static final java.lang.String DEFAULT_USER_AGENT
        The default user agent to use if USER_AGENT isn't set.
        See Also:
        Constant Field Values
      • CONNECT_TIMEOUT

        public static final java.lang.String CONNECT_TIMEOUT
        The maximum amount of time (in milliseconds) to wait for a successful connection to a remote server. Non-positive values indicate no timeout.
        See Also:
        DEFAULT_CONNECT_TIMEOUT, Constant Field Values
      • REQUEST_TIMEOUT

        public static final java.lang.String REQUEST_TIMEOUT
        The maximum amount of time (in milliseconds) to wait for remaining data to arrive from a remote server. Note that this timeout does not restrict the overall duration of a request, it only restricts the duration of inactivity between consecutive data packets. Non-positive values indicate no timeout.
        See Also:
        DEFAULT_REQUEST_TIMEOUT, Constant Field Values
      • HTTP_HEADERS

        public static final java.lang.String HTTP_HEADERS
        The request headers to use for HTTP-based repository connectors. The headers are specified using a Map<String, String>, mapping a header name to its value. Besides this general key, clients may also specify headers for a specific remote repository by appending the suffix .<repoId> to this key when storing the headers map. The repository-specific headers map is supposed to be complete, i.e. is not merged with the general headers map.
        See Also:
        Constant Field Values
      • HTTP_CREDENTIAL_ENCODING

        public static final java.lang.String HTTP_CREDENTIAL_ENCODING
        The encoding/charset to use when exchanging credentials with HTTP servers. Besides this general key, clients may also specify the encoding for a specific remote repository by appending the suffix .<repoId> to this key when storing the charset name.
        See Also:
        DEFAULT_HTTP_CREDENTIAL_ENCODING, Constant Field Values
      • PERSISTED_CHECKSUMS

        public static final java.lang.String PERSISTED_CHECKSUMS
        A flag indicating whether checksums which are retrieved during checksum validation should be persisted in the local filesystem next to the file they provide the checksum for.
        See Also:
        DEFAULT_PERSISTED_CHECKSUMS, Constant Field Values
    • Constructor Detail

      • ConfigurationProperties

        private ConfigurationProperties()