com.smartbear.readyapi.client.auth.Authentications Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ready-api-testserver-client Show documentation
Show all versions of ready-api-testserver-client Show documentation
Java client library for creating and executing test recipes against Ready!API TestServer
The newest version!
package com.smartbear.readyapi.client.auth;
public class Authentications {
public static AuthenticationBuilder basic(String username, String password) {
return new BasicAuthenticationBuilder(username, password);
}
public static NTLMAuthenticationBuilder ntlm(String username, String password) {
return new NTLMAuthenticationBuilder(username, password);
}
public static KerberosAuthenticationBuilder kerberos(String username, String password) {
return new KerberosAuthenticationBuilder(username, password);
}
public static OAuth2AuthenticationBuilder oAuth2() {
return new OAuth2AuthenticationBuilder();
}
}