All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.stormpath.sdk.impl.oauth.DefaultOAuthClientCredentialsGrantRequestAuthenticationResultBuilder Maven / Gradle / Ivy

Go to download

The Stormpath Java SDK core implemenation .jar is used at runtime to support API invocations. This implementation jar should be a runtime dependency only and should NOT be depended on at compile time by your code. The implementations within this jar can change at any time without warning - use it with runtime scope only.

There is a newer version: 2.0.4-okta
Show newest version
package com.stormpath.sdk.impl.oauth;

import com.stormpath.sdk.lang.Assert;
import com.stormpath.sdk.oauth.GrantAuthenticationToken;

/**
 * @since 1.0.0
 */
public class DefaultOAuthClientCredentialsGrantRequestAuthenticationResultBuilder extends DefaultOAuthGrantRequestAuthenticationResultBuilder {

    public DefaultOAuthClientCredentialsGrantRequestAuthenticationResultBuilder(GrantAuthenticationToken grantAuthenticationToken) {
        super(grantAuthenticationToken);
    }

    @Override
    public DefaultOAuthGrantRequestAuthenticationResult build() {
        Assert.notNull(this.grantAuthenticationToken, "grantAuthenticationToken has not been set. It is a required attribute.");

        this.accessToken = grantAuthenticationToken.getAsAccessToken();
        this.accessTokenString = grantAuthenticationToken.getAccessToken();
        this.idTokenString = grantAuthenticationToken.getIdToken();
        this.accessTokenHref = grantAuthenticationToken.getAccessTokenHref();
        this.tokenType = grantAuthenticationToken.getTokenType();
        this.expiresIn = Integer.parseInt(grantAuthenticationToken.getExpiresIn());

        return new DefaultOAuthGrantRequestAuthenticationResult(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy