public static enum OrcidClientContext.Setting extends Enum<OrcidClientContext.Setting>
| Enum Constant and Description |
|---|
API_ENVIRONMENT
Environement - public or sandbox
|
API_VERSION
Version - e.g.
|
CALLBACK_PATH
Where should ORCID call back to during the auth dance? Path within
this webapp.
|
CLIENT_ID
ID assigned by ORCID to the application.
|
CLIENT_SECRET
Secret code assigned by ORCID to the application.
|
WEBAPP_BASE_URL
The base URL for contacting this webapp (including context path.
|
| Modifier and Type | Method and Description |
|---|---|
static OrcidClientContext.Setting |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrcidClientContext.Setting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrcidClientContext.Setting CLIENT_ID
public static final OrcidClientContext.Setting CLIENT_SECRET
public static final OrcidClientContext.Setting API_VERSION
public static final OrcidClientContext.Setting API_ENVIRONMENT
public static final OrcidClientContext.Setting WEBAPP_BASE_URL
public static final OrcidClientContext.Setting CALLBACK_PATH
public static OrcidClientContext.Setting[] values()
for (OrcidClientContext.Setting c : OrcidClientContext.Setting.values()) System.out.println(c);
public static OrcidClientContext.Setting valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.