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

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

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

/** HTTP basic authentication support for username and API key */
public class HttpBasicAuthCredentials implements HttpCredentials {

    public final String username;
    public final String apiKey;
    
    public HttpBasicAuthCredentials(String username, String apiKey) {
        this.username = username;
        this.apiKey = apiKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy