public final enum

SalesforceOAuthImmediate

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.mule.modules.salesforce.SalesforceOAuthImmediate

Class Overview

Avoid interacting with the user.

Summary

Enum Values
SalesforceOAuthImmediate  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. 
SalesforceOAuthImmediate  TRUE  Prompt the user for login and approval  
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static SalesforceOAuthImmediate valueOf(String name)
final static SalesforceOAuthImmediate[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final SalesforceOAuthImmediate 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. If the user is not logged in or has not previously approved the client, the flow immediately terminates with the immediate_unsuccessful error code.

public static final SalesforceOAuthImmediate TRUE

Prompt the user for login and approval

Public Methods

public static SalesforceOAuthImmediate valueOf (String name)

Parameters
name

public static final SalesforceOAuthImmediate[] values ()