|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<OAuthConsumerParameter>
org.springframework.security.oauth.common.OAuthConsumerParameter
public enum OAuthConsumerParameter
Enumeration for consumer parameters.
| Enum Constant Summary | |
|---|---|
oauth_callback
Parameter for the callback. |
|
oauth_consumer_key
Parameter for the consumer key. |
|
oauth_nonce
Parameter for the nonce. |
|
oauth_signature
Parameter for the signature. |
|
oauth_signature_method
Parameter for the signature method. |
|
oauth_timestamp
Parameter for the timestamp. |
|
oauth_token
Parameter for the oauth token. |
|
oauth_verifier
Parameter for the verifier. |
|
oauth_version
Parameter for the version. |
|
| Method Summary | |
|---|---|
static OAuthConsumerParameter |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static OAuthConsumerParameter[] |
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 OAuthConsumerParameter oauth_consumer_key
public static final OAuthConsumerParameter oauth_token
public static final OAuthConsumerParameter oauth_signature_method
public static final OAuthConsumerParameter oauth_signature
public static final OAuthConsumerParameter oauth_timestamp
public static final OAuthConsumerParameter oauth_nonce
public static final OAuthConsumerParameter oauth_version
public static final OAuthConsumerParameter oauth_callback
public static final OAuthConsumerParameter oauth_verifier
| Method Detail |
|---|
public static OAuthConsumerParameter[] values()
for (OAuthConsumerParameter c : OAuthConsumerParameter.values()) System.out.println(c);
public static OAuthConsumerParameter 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 | |||||||||