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

io.vrap.rmf.base.client.oauth2.ClientCredentialsImpl Maven / Gradle / Ivy

There is a newer version: 17.15.1
Show newest version
package io.vrap.rmf.base.client.oauth2;

public class ClientCredentialsImpl implements ClientCredentials {
    private final String clientId;
    private final String clientSecret;
    private final String scopes;

    ClientCredentialsImpl(final String clientId, final String clientSecret, final String scopes) {
        this.clientId = clientId;
        this.clientSecret = clientSecret;
        this.scopes = scopes;
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy