public enum SalesforceOAuthImmediate extends Enum<SalesforceOAuthImmediate>
Enum Constant and Description |
---|
FALSE
If the user is currently logged in and has previously approved the client_id, the approval step is skipped, and the browser is immediately redirected to the callback with an
authorization code.
|
TRUE
Prompt the user for login and approval
|
Modifier and Type | Method and Description |
---|---|
static SalesforceOAuthImmediate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SalesforceOAuthImmediate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SalesforceOAuthImmediate TRUE
public static final SalesforceOAuthImmediate FALSE
public static SalesforceOAuthImmediate[] values()
for (SalesforceOAuthImmediate c : SalesforceOAuthImmediate.values()) System.out.println(c);
public static SalesforceOAuthImmediate 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 © 2010–2020. All rights reserved.