public final enum

SalesforceOAuthPrompt

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

Class Overview

Specifies how the authorization server prompts the user for reauthentication and reapproval

Summary

Enum Values
SalesforceOAuthPrompt  CONSENT  The authorization server must prompt the user for reapproval before returning information to the client. 
SalesforceOAuthPrompt  LOGIN  The authorization server must prompt the user for reauthentication, forcing the user to log in again. 
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static SalesforceOAuthPrompt valueOf(String name)
final static SalesforceOAuthPrompt[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final SalesforceOAuthPrompt CONSENT

The authorization server must prompt the user for reapproval before returning information to the client. It is valid to pass both values, separated by a space, to require the user to both log in and reauthorize.

public static final SalesforceOAuthPrompt LOGIN

The authorization server must prompt the user for reauthentication, forcing the user to log in again.

Public Methods

public static SalesforceOAuthPrompt valueOf (String name)

Parameters
name

public static final SalesforceOAuthPrompt[] values ()