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

com.softlayer.api.http.HttpBearerCredentials Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api.http;

/** HTTP Bearer authorization support for IBM IAM Tokens.
 *
 * @see IAM Tokens
 * @see Authenticating SoftLayer API
 */
public class HttpBearerCredentials implements HttpCredentials {

    protected final String token;
    
    public HttpBearerCredentials(String token) {
        this.token = token;
    }

    /**
     * Formats the token into a HTTP Authorization header.
     *
     * @return String
     */
    public String getHeader() {
        return "Bearer " + token;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy