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

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

Go to download

The DocuSign Admin API enables you to automate user management with your existing systems while ensuring governance and compliance.

There is a newer version: 2.0.0-RC1
Show newest version
package com.docusign.admin.client.auth;

import com.docusign.admin.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