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

com.docusign.monitor.client.auth.HttpBasicAuth Maven / Gradle / Ivy

Go to download

The official DocuSign Monitor Java client provides libraries for Java application integration with DocuSign Monitor for real estate and mortgage workflows. It is recommended that you use this version of the library for new development.

The newest version!
package com.docusign.monitor.client.auth;

import com.docusign.monitor.client.Pair;
import java.nio.charset.StandardCharsets;
import java.util.Base64;
import java.util.List;
import java.util.Map;

/** HttpBasicAuth class. */
public class HttpBasicAuth implements Authentication {
  private String username;
  private String password;

  /**
   * getUsername method.
   *
   * @return String
   */
  public String getUsername() {
    return username;
  }

  /**
   * setUsername method.
   *
   * @param username Sets username
   */
  public void setUsername(String username) {
    this.username = username;
  }

  /**
   * getPassword method.
   *
   * @return String
   */
  public String getPassword() {
    return password;
  }

  /**
   * setPassword method.
   *
   * @param password Sets password
   */
  public void setPassword(String password) {
    this.password = password;
  }

  /**
   * applyToParams method.
   *
   * @param queryParams The query params
   * @param headerParams The header params
   */
  @Override
  public void applyToParams(List queryParams, Map headerParams) {
    if (username == null && password == null) {
      return;
    }
    String str = (username == null ? "" : username) + ":" + (password == null ? "" : password);
    headerParams.put(
        "Authorization",
        "Basic " + Base64.getEncoder().encodeToString(str.getBytes(StandardCharsets.UTF_8)));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy