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

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

Introduction

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

Usage

From source file ti.ntlm.NTLMSchemeFactory.java

@Kroll.proxy(creatableInModule = NtlmModule.class)
public class NTLMSchemeFactory extends KrollProxy implements AuthSchemeFactory {

    @Override
    public AuthScheme newInstance(HttpParams arg0) {

From source file org.odk.collect.android.utilities.EnhancedDigestSchemeFactory.java

/**
 * Boilerplate needed to update to version 4.1.2 of the DigestScheme class
 * (copied and renamed to EnhancedDigestScheme).
 * 
 * @author mitchellsundt@gmail.com
 *

From source file net.oauth.client.httpclient4.OAuthSchemeFactory.java

/**
 * An implementation of the <a
 * href="http://oauth.net/core/1.0#auth_header">OAuth HTTP authorization
 * scheme</a>. This is somewhat limited: it can only sign a request URL by
 * adding an Authorization header. It can't change the request URL query string,
 * it can't handle OAuth parameters in the URL query and it can't sign

From source file nl.esciencecenter.osmium.mac.MacSchemeFactory.java

/**
 * Factory for {@link MacScheme} implementations.
 *
 * @author verhoes
 */
public class MacSchemeFactory implements AuthSchemeFactory {

From source file glaze.oauth.OAuthSchemeFactory.java

/**
 * An implementation of the <a
 * href="http://oauth.net/core/1.0#auth_header">OAuth HTTP authorization
 * scheme</a>. This is somewhat limited: it can only sign a request URL by
 * adding an Authorization header. It can't change the request URL query string,
 * it can't handle OAuth parameters in the URL query and it can't sign

From source file nl.esciencecenter.octopus.webservice.mac.MacSchemeFactory.java

/**
 * Factory for {@link MacScheme} implementations.
 *
 * @author verhoes
 */
public class MacSchemeFactory implements AuthSchemeFactory {

From source file org.brunocvcunha.taskerbox.core.http.auth.NTLMSchemeFactory.java

/**
 * NTLM Scheme Factory
 *
 * From: https://hc.apache.org/httpcomponents-client-ga/ntlm.html
 *
 */

From source file freeipa.client.negotiation.JBossNegotiateSchemeFactory.java

/**
 * SPNEGO (Simple and Protected GSSAPI Negotiation Mechanism) authentication
 * scheme factory. Provides {@link JBossNegotiateScheme} instances.
 * 
 * @author Josef Cacek
 */

From source file org.jboss.as.test.integration.security.common.negotiation.JBossNegotiateSchemeFactory.java

/**
 * SPNEGO (Simple and Protected GSSAPI Negotiation Mechanism) authentication scheme factory. Provides
 * {@link JBossNegotiateScheme} instances.
 *
 * @author Josef Cacek
 */

From source file org.gradle.api.internal.externalresource.transport.http.ntlm.NTLMSchemeFactory.java

public class NTLMSchemeFactory implements AuthSchemeFactory {

    public static void register(DefaultHttpClient httpClient) {
        httpClient.getAuthSchemes().register("ntlm", new NTLMSchemeFactory());
    }