Example usage for org.apache.http.impl.auth AuthSchemeBase subclass-usage

List of usage examples for org.apache.http.impl.auth AuthSchemeBase subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.impl.auth AuthSchemeBase subclass-usage.

Usage

From source file com.androidquery.test.NTLMScheme.java

/**
 * NTLM is a proprietary authentication scheme developed by Microsoft
 * and optimized for Windows platforms.
 *
 * @since 4.0
 */

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

/**
 * SPNEGO (Simple and Protected GSSAPI Negotiation Mechanism) authentication scheme. It's based on NegotiateScheme class from
 * Apache HC, it fixes DEFAULT_LIFETIME problem with IBM JDK.
 * <p>
 * This class could extend {@link org.apache.http.impl.auth.SPNegoScheme SPNegoScheme} when the <a
 * href="https://issues.apache.org/jira/browse/HTTPCLIENT-1305">HTTPCLIENT-1305</a> is fixed.

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

import org.ietf.jgss.Oid;
import org.jboss.logging.Logger;

/**
 * SPNEGO (Simple and Protected GSSAPI Negotiation Mechanism) authentication scheme. It's based on NegotiateScheme class from
 * Apache HC, it fixes DEFAULT_LIFETIME problem with IBM JDK.

From source file org.apache.http.impl.auth.GGSSchemeBase.java

/**
 * @since 4.2
 */
@NotThreadSafe
public abstract class GGSSchemeBase extends AuthSchemeBase {

From source file org.jboss.as.test.integration.security.loginmodules.negotiation.JBossNegotiateScheme.java

/**
 * SPNEGO (Simple and Protected GSSAPI Negotiation Mechanism) authentication scheme. It's based on NegotiateScheme class from
 * Apache HC, but fixes DEFAULT_LIFETIME problem with IBM JDK.
 * 
 * @author Josef Cacek
 */

From source file org.apache.http.impl.auth.win.WindowsNegotiateScheme.java

/**
 * Auth scheme that makes use of JNA to implement Negotiate & NTLM on Windows Platforms.
 * <p/>
 * This will delegate negotiation to the windows machine.
 * <p/>
 * EXPERIMENTAL