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

io.continual.jsonHttpClient.HttpUsernamePasswordCredentials Maven / Gradle / Ivy

There is a newer version: 0.3.16
Show newest version
package io.continual.jsonHttpClient;

import java.nio.charset.StandardCharsets;
import java.util.Base64;

/**
 * Username/password credentials
 */
public class HttpUsernamePasswordCredentials
{
	/**
	 * Construct a credentials pair with a username and password
	 * @param user
	 * @param pwd
	 */
	public HttpUsernamePasswordCredentials ( String user, String pwd )
	{
		fUser = user;
		fPwd = pwd;
	}

	/**
	 * Get the username
	 * @return the username
	 */
	public String getUser () { return fUser; }

	/**
	 * Get the password
	 * @return the password
	 */
	public String getPassword () { return fPwd; }

	/**
	 * Return the credentials as a base64 encoding suitable for use as HTTP basic auth
	 * @return
	 */
	public String asBasicAuth ()
	{
		final String authText = fUser + ":" + ( fPwd == null ? "" : fPwd );
		return Base64.getEncoder ().encodeToString ( authText.getBytes ( StandardCharsets.UTF_8 ) );
	}

	private final String fUser;
	private final String fPwd;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy