Package com.checkout
Enum OAuthScope
- java.lang.Object
-
- java.lang.Enum<OAuthScope>
-
- com.checkout.OAuthScope
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OAuthScope>
public enum OAuthScope extends java.lang.Enum<OAuthScope>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetScope()static OAuthScopevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OAuthScope[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNTS
public static final OAuthScope ACCOUNTS
-
BALANCES
public static final OAuthScope BALANCES
-
BALANCES_VIEW
public static final OAuthScope BALANCES_VIEW
-
CARD_MANAGEMENT
public static final OAuthScope CARD_MANAGEMENT
-
DISPUTES
public static final OAuthScope DISPUTES
-
DISPUTES_ACCEPT
public static final OAuthScope DISPUTES_ACCEPT
-
DISPUTES_PROVIDE_EVIDENCE
public static final OAuthScope DISPUTES_PROVIDE_EVIDENCE
-
DISPUTES_VIEW
public static final OAuthScope DISPUTES_VIEW
-
FILES
public static final OAuthScope FILES
-
FILES_DOWNLOAD
public static final OAuthScope FILES_DOWNLOAD
-
FILES_RETRIEVE
public static final OAuthScope FILES_RETRIEVE
-
FILES_UPLOAD
public static final OAuthScope FILES_UPLOAD
-
FINANCIAL_ACTIONS
public static final OAuthScope FINANCIAL_ACTIONS
-
FINANCIAL_ACTIONS_VIEW
public static final OAuthScope FINANCIAL_ACTIONS_VIEW
-
FLOW
public static final OAuthScope FLOW
-
FLOW_EVENTS
public static final OAuthScope FLOW_EVENTS
-
FLOW_WORKFLOWS
public static final OAuthScope FLOW_WORKFLOWS
-
FX
public static final OAuthScope FX
-
GATEWAY
public static final OAuthScope GATEWAY
-
GATEWAY_PAYMENT
public static final OAuthScope GATEWAY_PAYMENT
-
GATEWAY_PAYMENT_AUTHORIZATION
public static final OAuthScope GATEWAY_PAYMENT_AUTHORIZATION
-
GATEWAY_PAYMENT_CAPTURES
public static final OAuthScope GATEWAY_PAYMENT_CAPTURES
-
GATEWAY_PAYMENT_CANCELLATIONS
public static final OAuthScope GATEWAY_PAYMENT_CANCELLATIONS
-
GATEWAY_PAYMENT_DETAILS
public static final OAuthScope GATEWAY_PAYMENT_DETAILS
-
GATEWAY_PAYMENT_REFUNDS
public static final OAuthScope GATEWAY_PAYMENT_REFUNDS
-
GATEWAY_PAYMENT_VOIDS
public static final OAuthScope GATEWAY_PAYMENT_VOIDS
-
ISSUING_CARD_MANAGEMENT_READ
public static final OAuthScope ISSUING_CARD_MANAGEMENT_READ
-
ISSUING_CARD_MANAGEMENT_WRITE
public static final OAuthScope ISSUING_CARD_MANAGEMENT_WRITE
-
ISSUING_CARD_MGMT
public static final OAuthScope ISSUING_CARD_MGMT
-
ISSUING_CLIENT
public static final OAuthScope ISSUING_CLIENT
-
ISSUING_CONTROLS_READ
public static final OAuthScope ISSUING_CONTROLS_READ
-
ISSUING_CONTROLS_WRITE
public static final OAuthScope ISSUING_CONTROLS_WRITE
-
ISSUING_TRANSACTIONS_READ
public static final OAuthScope ISSUING_TRANSACTIONS_READ
-
ISSUING_TRANSACTIONS_WRITE
public static final OAuthScope ISSUING_TRANSACTIONS_WRITE
-
MARKETPLACE
public static final OAuthScope MARKETPLACE
-
MIDDLEWARE
public static final OAuthScope MIDDLEWARE
-
MIDDLEWARE_MERCHANTS_PUBLIC
public static final OAuthScope MIDDLEWARE_MERCHANTS_PUBLIC
-
MIDDLEWARE_MERCHANTS_SECRET
public static final OAuthScope MIDDLEWARE_MERCHANTS_SECRET
-
PAYMENT_CONTEXTS
public static final OAuthScope PAYMENT_CONTEXTS
-
PAYMENT_SESSIONS
public static final OAuthScope PAYMENT_SESSIONS
-
PAYOUTS_BANK_DETAILS
public static final OAuthScope PAYOUTS_BANK_DETAILS
-
REPORTS
public static final OAuthScope REPORTS
-
REPORTS_VIEW
public static final OAuthScope REPORTS_VIEW
-
SESSIONS_APP
public static final OAuthScope SESSIONS_APP
-
SESSIONS_BROWSER
public static final OAuthScope SESSIONS_BROWSER
-
TRANSACTIONS
public static final OAuthScope TRANSACTIONS
-
TRANSFERS
public static final OAuthScope TRANSFERS
-
TRANSFERS_CREATE
public static final OAuthScope TRANSFERS_CREATE
-
TRANSFERS_VIEW
public static final OAuthScope TRANSFERS_VIEW
-
VAULT
public static final OAuthScope VAULT
-
VAULT_CARD_METADATA
public static final OAuthScope VAULT_CARD_METADATA
-
VAULT_INSTRUMENTS
public static final OAuthScope VAULT_INSTRUMENTS
-
VAULT_TOKENIZATION
public static final OAuthScope VAULT_TOKENIZATION
-
FORWARD
public static final OAuthScope FORWARD
-
-
Method Detail
-
values
public static OAuthScope[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OAuthScope c : OAuthScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OAuthScope valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getScope
public java.lang.String getScope()
-
-