Package co.cask.cdap.security.authentication.client

Examples of co.cask.cdap.security.authentication.client.Credential


  /**
   * Constructs new instance.
   */
  public BasicAuthenticationClient() {
    super();
    credentials = ImmutableList.of(new Credential(USERNAME_PROP_NAME, "Username for basic authentication.", false),
                                   new Credential(PASSWORD_PROP_NAME, "Password for basic authentication.", true));
  }
View Full Code Here

TOP

Related Classes of co.cask.cdap.security.authentication.client.Credential

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.