Java org.springframework.security.oauth.provider.token OAuthProviderTokenImpl fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.oauth.provider.token OAuthProviderTokenImpl fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.oauth.provider.token OAuthProviderTokenImpl.

The text is from its open source code.

Constructor

Method

StringgetCallbackUrl()
The callback url associated with this token.
StringgetConsumerKey()
The consumer key associated with this oauth token.
StringgetSecret()
The token secret.
longgetTimestamp()
Timestamp associated with this token.
AuthenticationgetUserAuthentication()
The authentication of the user who granted the access token.
StringgetVerifier()
The verifier string for this token.
booleanisAccessToken()
Whether this is an OAuth access token.
voidsetAccessToken(boolean accessToken)
Whether this is an OAuth access token.
voidsetCallbackUrl(String callbackUrl)
The callback url associated with this token.
voidsetConsumerKey(String consumerKey)
The consumer key associated with this oauth token.
voidsetSecret(String secret)
The token secret.
voidsetTimestamp(long timestamp)
Timestamp associated with this token.
voidsetUserAuthentication(Authentication userAuthentication)
The authentication of the user who granted the access token.
voidsetValue(String value)
The value of the token.
voidsetVerifier(String verifier)
The verifier string for this (access) token.