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

com.smartbear.readyapi.client.auth.Authentications Maven / Gradle / Ivy

Go to download

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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy