lumis.socialnetworkintegration
Enum AuthenticationResponseValues

Package class diagram package AuthenticationResponseValues
java.lang.Object
  extended by java.lang.Enum<AuthenticationResponseValues>
      extended by lumis.socialnetworkintegration.AuthenticationResponseValues
All Implemented Interfaces:
Serializable, Comparable<AuthenticationResponseValues>

public enum AuthenticationResponseValues
extends Enum<AuthenticationResponseValues>

Gives the enumeration of the possible values an authenticationResponse may have. This includes parameters from all possible Social Networks.

Since:
6.1.0

Enum Constant Summary
Access_Token
          Represents the access_token parameter in the authenticationRespose.
Access_Token_Secret
          Represents the access_token_secret parameter in the authenticationRespose.
OAuth_Token
          Represents the oauth_token parameter in the authenticationRespose.
OAuth_Token_Secret
          Represents the oauth_token_secret parameter in the authenticationRespose.
OAuth_Verifier
          Represents the oauth_verifies parameter in the authenticationResonse.
ScreenName
          Represents the screen_name parameter in the authenticationRespose.
UserId
          Represents the user_id parameter in the authenticationRespose.
 
Method Summary
static AuthenticationResponseValues valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AuthenticationResponseValues[] 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

OAuth_Verifier

public static final AuthenticationResponseValues OAuth_Verifier
Represents the oauth_verifies parameter in the authenticationResonse.

Since:
6.1.0

OAuth_Token

public static final AuthenticationResponseValues OAuth_Token
Represents the oauth_token parameter in the authenticationRespose.

Since:
6.1.0

OAuth_Token_Secret

public static final AuthenticationResponseValues OAuth_Token_Secret
Represents the oauth_token_secret parameter in the authenticationRespose.

Since:
6.1.0

UserId

public static final AuthenticationResponseValues UserId
Represents the user_id parameter in the authenticationRespose.

Since:
6.1.0

ScreenName

public static final AuthenticationResponseValues ScreenName
Represents the screen_name parameter in the authenticationRespose.

Since:
6.1.0

Access_Token

public static final AuthenticationResponseValues Access_Token
Represents the access_token parameter in the authenticationRespose.

Since:
6.1.0

Access_Token_Secret

public static final AuthenticationResponseValues Access_Token_Secret
Represents the access_token_secret parameter in the authenticationRespose.

Since:
6.1.0
Method Detail

values

public static AuthenticationResponseValues[] 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 (AuthenticationResponseValues c : AuthenticationResponseValues.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AuthenticationResponseValues valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Lumisportal  6.2.0.120405 - Copyright © 2006–2012 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.