public final class CredentialUtils
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
CredentialUtils.ServiceCredentials
A util class to easily store service credentials.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
PLAN_EXPERIMENTAL
The Constant PLAN_EXPERIMENTAL.
|
static java.lang.String |
PLAN_FREE
The Constant PLAN_FREE.
|
static java.lang.String |
PLAN_STANDARD
The Constant PLAN_STANDARD.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getAPIKey(java.lang.String serviceName)
Returns the apiKey from the VCAP_SERVICES or null if doesn't exists.
|
static java.lang.String |
getAPIKey(java.lang.String serviceName,
java.lang.String plan)
Returns the apiKey from the VCAP_SERVICES or null if doesn't exists.
|
static java.lang.String |
getAPIUrl(java.lang.String serviceName)
Gets the API url.
|
static java.lang.String |
getAPIUrl(java.lang.String serviceName,
java.lang.String plan)
Returns the apiKey from the VCAP_SERVICES or null if doesn't exists.
|
static CredentialUtils.ServiceCredentials |
getUserNameAndPassword(java.lang.String serviceName)
Returns the username and password as defined in the VCAP_SERVICES or null if they do not exist or are not
accessible.
|
static CredentialUtils.ServiceCredentials |
getUserNameAndPassword(java.lang.String serviceName,
java.lang.String plan)
Returns the username and password as defined in the VCAP_SERVICES or null if they do not exist or are not
accessible.
|
static void |
setServices(java.lang.String services)
Sets the VCAP_SERVICES variable.
|
public static final java.lang.String PLAN_EXPERIMENTAL
public static final java.lang.String PLAN_FREE
public static final java.lang.String PLAN_STANDARD
public static java.lang.String getAPIKey(java.lang.String serviceName)
serviceName
- the service namepublic static java.lang.String getAPIKey(java.lang.String serviceName, java.lang.String plan)
serviceName
- the service nameplan
- the service plan: standard, free or experimentalpublic static CredentialUtils.ServiceCredentials getUserNameAndPassword(java.lang.String serviceName)
getUserNameAndPassword(String, String)
. Invoking this method is
identical to calling getUserNameAndPassword(serviceName, null);
serviceName
- the name of the service whose credentials are soughtpublic static CredentialUtils.ServiceCredentials getUserNameAndPassword(java.lang.String serviceName, java.lang.String plan)
serviceName
- the name of the service whose credentials are soughtplan
- the plan namepublic static java.lang.String getAPIUrl(java.lang.String serviceName)
serviceName
- the service namepublic static java.lang.String getAPIUrl(java.lang.String serviceName, java.lang.String plan)
serviceName
- the service nameplan
- the service plan: standard, free or experimentalpublic static void setServices(java.lang.String services)
services
- the VCAP_SERVICES