|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SessionLoginBehavior>
com.facebook.SessionLoginBehavior
public enum SessionLoginBehavior
Specifies the behaviors to try during
openForRead
,
openForPublish
,
requestNewReadPermissions
, or
requestNewPublishPermissions
.
Enum Constant Summary | |
---|---|
SSO_ONLY
Specifies that Session should only attempt SSO. |
|
SSO_WITH_FALLBACK
Specifies that Session should attempt Single Sign On (SSO), and if that does not work fall back to dialog auth. |
|
SUPPRESS_SSO
Specifies that SSO should not be attempted, and to only use dialog auth. |
Method Summary | |
---|---|
static SessionLoginBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SessionLoginBehavior[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SessionLoginBehavior SSO_WITH_FALLBACK
public static final SessionLoginBehavior SSO_ONLY
public static final SessionLoginBehavior SUPPRESS_SSO
Method Detail |
---|
public static SessionLoginBehavior[] values()
for (SessionLoginBehavior c : SessionLoginBehavior.values()) System.out.println(c);
public static SessionLoginBehavior valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |