|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.sonatype.aether.ConfigurationProperties
public final class ConfigurationProperties
The keys and defaults for common configuration properties.
RepositorySystemSession.getConfigProperties()
Field Summary | |
---|---|
static java.lang.String |
CONNECT_TIMEOUT
The timeout (in milliseconds) to wait for a successful connection to a remote server. |
static int |
DEFAULT_CONNECT_TIMEOUT
The default connect timeout to use if CONNECT_TIMEOUT isn't set. |
static boolean |
DEFAULT_INTERACTIVE
The default interactive mode if INTERACTIVE isn't set. |
static int |
DEFAULT_REQUEST_TIMEOUT
The default request timeout to use if REQUEST_TIMEOUT isn't set. |
static java.lang.String |
DEFAULT_USER_AGENT
The default user agent to use if USER_AGENT isn't set. |
static java.lang.String |
INTERACTIVE
A flag indicating whether interaction with the user is allowed. |
static java.lang.String |
REQUEST_TIMEOUT
The timeout (in milliseconds) to wait for a response from a remote server. |
static java.lang.String |
USER_AGENT
The user agent that repository connectors should reports to servers. |
Method Summary | |
---|---|
static boolean |
get(java.util.Map<?,?> properties,
java.lang.String key,
boolean defaultValue)
Gets the specified configuration property. |
static int |
get(java.util.Map<?,?> properties,
java.lang.String key,
int defaultValue)
Gets the specified configuration property. |
static java.lang.String |
get(java.util.Map<?,?> properties,
java.lang.String key,
java.lang.String defaultValue)
Gets the specified configuration property. |
static boolean |
get(RepositorySystemSession session,
java.lang.String key,
boolean defaultValue)
Gets the specified configuration property. |
static int |
get(RepositorySystemSession session,
java.lang.String key,
int defaultValue)
Gets the specified configuration property. |
static java.lang.String |
get(RepositorySystemSession session,
java.lang.String key,
java.lang.String defaultValue)
Gets the specified configuration property. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String INTERACTIVE
DEFAULT_INTERACTIVE
,
Constant Field Valuespublic static final boolean DEFAULT_INTERACTIVE
INTERACTIVE
isn't set.
public static final java.lang.String USER_AGENT
DEFAULT_USER_AGENT
,
Constant Field Valuespublic static final java.lang.String DEFAULT_USER_AGENT
USER_AGENT
isn't set.
public static final java.lang.String CONNECT_TIMEOUT
DEFAULT_CONNECT_TIMEOUT
,
Constant Field Valuespublic static final int DEFAULT_CONNECT_TIMEOUT
CONNECT_TIMEOUT
isn't set.
public static final java.lang.String REQUEST_TIMEOUT
DEFAULT_REQUEST_TIMEOUT
,
Constant Field Valuespublic static final int DEFAULT_REQUEST_TIMEOUT
REQUEST_TIMEOUT
isn't set.
Method Detail |
---|
public static java.lang.String get(java.util.Map<?,?> properties, java.lang.String key, java.lang.String defaultValue)
properties
- The configuration properties to read, must not be null
.key
- The property to read, must not be null
.defaultValue
- The default value to return in case the property isn't set, may be null
.
null
if none.public static java.lang.String get(RepositorySystemSession session, java.lang.String key, java.lang.String defaultValue)
session
- The repository system session from which to read the configuration property, must not be
null
.key
- The property to read, must not be null
.defaultValue
- The default value to return in case the property isn't set, may be null
.
null
if none.public static int get(java.util.Map<?,?> properties, java.lang.String key, int defaultValue)
properties
- The configuration properties to read, must not be null
.key
- The property to read, must not be null
.defaultValue
- The default value to return in case the property isn't set.
public static int get(RepositorySystemSession session, java.lang.String key, int defaultValue)
session
- The repository system session from which to read the configuration property, must not be
null
.key
- The property to read, must not be null
.defaultValue
- The default value to return in case the property isn't set.
public static boolean get(java.util.Map<?,?> properties, java.lang.String key, boolean defaultValue)
properties
- The configuration properties to read, must not be null
.key
- The property to read, must not be null
.defaultValue
- The default value to return in case the property isn't set.
public static boolean get(RepositorySystemSession session, java.lang.String key, boolean defaultValue)
session
- The repository system session from which to read the configuration property, must not be
null
.key
- The property to read, must not be null
.defaultValue
- The default value to return in case the property isn't set.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |