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

io.sphere.sdk.client.MySphereAuthConfigImpl Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.client;

import io.sphere.sdk.models.Base;

import java.util.List;

import static io.sphere.sdk.client.ClientPackage.requireNonBlank;

final class MySphereAuthConfigImpl extends Base implements SphereAuthConfig {

    private final String projectKey;
    private final String clientId;
    private final String clientSecret;
    private final String authUrl;
    private final List scopes;

    MySphereAuthConfigImpl(final String projectKey, final String clientId, final String clientSecret, final String authUrl, final List scopes) {
        this.scopes = scopes;
        this.projectKey = requireNonBlank(projectKey, "projectKey");
        this.clientId = requireNonBlank(clientId, "clientId");
        this.clientSecret = requireNonBlank(clientSecret, "clientSecret");
        this.authUrl = requireNonBlank(authUrl, "authUrl");
    }

    @Override
    public String getProjectKey() {
        return projectKey;
    }

    @Override
    public String getClientId() {
        return clientId;
    }

    @Override
    public String getClientSecret() {
        return clientSecret;
    }

    @Override
    public String getAuthUrl() {
        return authUrl;
    }

    @Override
    public List getScopes() {
        return scopes;
    }

    @Override
    public List getRawScopes() {
        return scopes;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy