Interface OAuthToken
- All Known Implementing Classes:
NuxeoOAuthToken
public interface OAuthToken
Represents Token data as manipulated in OAuth during the 3 legged authentication. The same interface is used for
Request Token and Access Token.
- Author:
- tiry
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetAppId()
Returns consumer application identifier.Returns consumer call back url (may be used to override what is provided in theOAuthConsumerRegistry
.Gets the Consumer Key.Gets creation date of the Token.Returns Nuxeo Login as determined during the authorize phase.getToken()
Returns OAuth token.Returns secret associated to the Token.getType()
Gets the type of token: REQUEST / ACCESS.Generic getter (not used for now).Gets the verifier code.boolean
Checks is token is expired.void
setNuxeoLogin
(String login) Setter for the Login.void
Generic setter (not used for now).
-
Method Details
-
getAppId
String getAppId()Returns consumer application identifier. -
getCallbackUrl
String getCallbackUrl()Returns consumer call back url (may be used to override what is provided in theOAuthConsumerRegistry
. -
getNuxeoLogin
String getNuxeoLogin()Returns Nuxeo Login as determined during the authorize phase. -
getToken
String getToken()Returns OAuth token. -
getTokenSecret
String getTokenSecret()Returns secret associated to the Token. -
getConsumerKey
String getConsumerKey()Gets the Consumer Key. -
getType
OAuthToken.Type getType()Gets the type of token: REQUEST / ACCESS. -
getCreationDate
Calendar getCreationDate()Gets creation date of the Token. -
getValue
Generic getter (not used for now). -
setValue
Generic setter (not used for now). -
getVerifier
String getVerifier()Gets the verifier code. -
isExpired
boolean isExpired()Checks is token is expired. -
setNuxeoLogin
Setter for the Login.
-