com.softlayer.api.http.HttpBasicAuthCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
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;
}
}