Class ServiceProviderToken.ServiceProviderTokenBuilder
java.lang.Object
com.atlassian.bitbucket.jenkins.internal.applink.oauth.Token.TokenBuilder<ServiceProviderToken,ServiceProviderToken.ServiceProviderTokenBuilder>
com.atlassian.bitbucket.jenkins.internal.applink.oauth.serviceprovider.token.ServiceProviderToken.ServiceProviderTokenBuilder
- Enclosing class:
- ServiceProviderToken
public static final class ServiceProviderToken.ServiceProviderTokenBuilder
extends Token.TokenBuilder<ServiceProviderToken,ServiceProviderToken.ServiceProviderTokenBuilder>
-
Method Summary
Modifier and TypeMethodDescriptionauthorizedBy(String user) Sets theuserthat authorized the request token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.build()Constructs and returns the final requestTokeninstance.Sets thecallbackattribute of the token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.creationTime(long creationTime) Sets thecreationTimeattribute of the token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.Sets theuserthat denied the request token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.session(ServiceProviderToken.Session session) Sets thesessionattribute of the token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.timeToLive(long timeToLive) Sets thetimeToLiveattribute of the token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.Sets theverifiervalue to use to determine that the authorizing user is the same as the user swapping the request token for an access token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.Methods inherited from class com.atlassian.bitbucket.jenkins.internal.applink.oauth.Token.TokenBuilder
consumer, properties, tokenSecret
-
Method Details
-
authorizedBy
Sets theuserthat authorized the request token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.- Parameters:
user- name of the user that authorized theConsumerto make requests on behalf of themselves- Returns:
thisbuilder
-
deniedBy
Sets theuserthat denied the request token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.- Parameters:
user- name of the user that denied theConsumerto make requests on behalf of themselves- Returns:
thisbuilder
-
verifier
Sets theverifiervalue to use to determine that the authorizing user is the same as the user swapping the request token for an access token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.- Parameters:
verifier- value to use to determine that the authorizing user is the same as the user swapping the request token for an access token- Returns:
thisbuilder
-
creationTime
Sets thecreationTimeattribute of the token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.- Parameters:
creationTime- time the token was originally created- Returns:
thisbuilder
-
timeToLive
Sets thetimeToLiveattribute of the token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.- Parameters:
timeToLive- how long the token is valid for- Returns:
thisbuilder
-
callback
Sets thecallbackattribute of the token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed. Anullcallback value indicates that the callback has been established out-of-band, via some other form of communication between the consumer and the service provider.- Parameters:
callback- callback token attributes value- Returns:
thisbuilder
-
session
public ServiceProviderToken.ServiceProviderTokenBuilder session(ServiceProviderToken.Session session) Sets thesessionattribute of the token and returnsthisbuilder to allow other optional attributes to be set or the final requestTokeninstance to be constructed.- Parameters:
session- the session- Returns:
thisbuilder
-
build
Constructs and returns the final requestTokeninstance.- Specified by:
buildin classToken.TokenBuilder<ServiceProviderToken,ServiceProviderToken.ServiceProviderTokenBuilder> - Returns:
- the final request
Tokeninstance
-