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

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

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

public class BasicAuthHeader extends SimpleHeader {

    public BasicAuthHeader(String token) {
        super(CommonHeaderName.AUTHORIZATION, prefixBasic(token));
    }

    private static String prefixBasic(String token) {
        return "Basic " + token;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy