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

uk.co.mruoc.rest.client.header.DefaultBasicAuthCredentials Maven / Gradle / Ivy

package uk.co.mruoc.rest.client.header;

public class DefaultBasicAuthCredentials implements BasicAuthCredentials {

    private final String key;
    private final String secret;

    public DefaultBasicAuthCredentials(String key, String secret) {
        this.key = key;
        this.secret = secret;
    }

    @Override
    public String getKey() {
        return key;
    }

    @Override
    public String getSecret() {
        return secret;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy