OAuth2GraniteIssuer.java 2.25 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.granite.crypto.CryptoException
 *  com.adobe.granite.oauth.jwt.JwsBuilder
 *  org.apache.oltu.oauth2.as.issuer.OAuthIssuer
 *  org.apache.oltu.oauth2.common.exception.OAuthSystemException
 */
package com.adobe.granite.oauth.server.impl;

import com.adobe.granite.crypto.CryptoException;
import com.adobe.granite.oauth.jwt.JwsBuilder;
import org.apache.oltu.oauth2.as.issuer.OAuthIssuer;
import org.apache.oltu.oauth2.common.exception.OAuthSystemException;

public class OAuth2GraniteIssuer
implements OAuthIssuer {
    private JwsBuilder jwsBuilder;

    public OAuth2GraniteIssuer(JwsBuilder jwsBuilder) {
        this.jwsBuilder = jwsBuilder;
    }

    public String accessToken() throws OAuthSystemException {
        try {
            return this.jwsBuilder.build();
        }
        catch (CryptoException e) {
            throw new OAuthSystemException((Throwable)e);
        }
    }

    public String authorizationCode() throws OAuthSystemException {
        try {
            return this.jwsBuilder.build();
        }
        catch (CryptoException e) {
            throw new OAuthSystemException((Throwable)e);
        }
    }

    public String refreshToken() throws OAuthSystemException {
        try {
            return this.jwsBuilder.build();
        }
        catch (CryptoException e) {
            throw new OAuthSystemException((Throwable)e);
        }
    }

    public OAuth2GraniteIssuer setIssuer(String iss) {
        this.jwsBuilder.setIssuer(iss);
        return this;
    }

    public OAuth2GraniteIssuer setExpiresIn(String expiresIn) {
        this.jwsBuilder.setExpiresIn(Long.parseLong(expiresIn));
        return this;
    }

    public OAuth2GraniteIssuer setSubject(String sub) {
        this.jwsBuilder.setSubject(sub);
        return this;
    }

    public OAuth2GraniteIssuer setAudience(String aud) {
        this.jwsBuilder.setAudience(aud);
        return this;
    }

    public OAuth2GraniteIssuer setScope(String scope) {
        this.jwsBuilder.setScope(scope);
        return this;
    }

    public OAuth2GraniteIssuer setCustomClaimsSetField(String key, Object value) {
        this.jwsBuilder.setCustomClaimsSetField(key, value);
        return this;
    }
}