Example usage for org.apache.http.auth AuthSchemeProvider interface-usage

List of usage examples for org.apache.http.auth AuthSchemeProvider interface-usage

Introduction

In this page you can find the example usage for org.apache.http.auth AuthSchemeProvider interface-usage.

Usage

From source file com.joyent.http.signature.apache.httpclient.HttpSignatureAuthSchemeProvider.java

/**
 * Provides an new instance of {@link HttpSignatureAuthScheme}.
 *
 * @author <a href="https://github.com/dekobon">Elijah Zupancic</a>
 * @since 2.0.3
 */

From source file com.mobilehelix.appserver.auth.JCIFSHttpClientAuthFactoryScheme.java

public class JCIFSHttpClientAuthFactoryScheme implements AuthSchemeProvider {

    @Override
    public AuthScheme create(HttpContext context) {
        return new NTLMScheme(new JCIFSHttpClientEngine());
    }

From source file org.codelibs.robot.client.http.ntlm.NTLMSchemeProvider.java

/**
 * This class is AuthSchemeFactory implementation for NTLM.
 *
 * @author shinsuke
 *
 */

From source file org.seasar.robot.client.http.ntlm.NTLMSchemeProvider.java

/**
 * This class is AuthSchemeFactory implementation for NTLM.
 * 
 * @author shinsuke
 * 
 */

From source file org.codelibs.fess.crawler.client.http.ntlm.NTLMSchemeProvider.java

/**
 * This class is AuthSchemeFactory implementation for NTLM.
 *
 * @author shinsuke
 *
 */

From source file org.cleverbus.core.common.ws.transport.http.ntlm.NTLMSchemeFactory.java

public class NTLMSchemeFactory implements AuthSchemeProvider {

    @Override
    public AuthScheme create(HttpContext httpContext) {
        return new NTLMScheme(new JCIFSEngine());
    }

From source file com.microsoft.azure.keyvault.authentication.BearerAuthenticationProvider.java

/**
 * A factory of {@link BearerAuthentication} authentication schemes.
 * <p>
 * The typical way of using this class is registering to an http client builder
 * by calling {@link HttpClientBuilder#setDefaultAuthSchemeRegistry(Lookup)}:
 * </p>

From source file org.apache.nifi.hadoop.KerberosKeytabSPNegoAuthSchemeProvider.java

/**
 * Provider class for KerberosKeytabSPNegoAuthScheme.
 */
public class KerberosKeytabSPNegoAuthSchemeProvider implements AuthSchemeProvider {

    public AuthScheme create(HttpContext context) {

From source file org.adeptnet.maven.wagon.providers.http.SPNegoSchemeFactory.java

/**
 * {@link AuthSchemeProvider} implementation that creates and initializes
 * {@link SPNegoScheme} instances.
 *
 * @since 4.2
 */