Example usage for org.apache.commons.httpclient.auth AuthScheme interface-usage

List of usage examples for org.apache.commons.httpclient.auth AuthScheme interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.httpclient.auth AuthScheme interface-usage.

Usage

From source file org.mule.transport.http.ntlm.NTLMScheme.java

/**
 * Reimplements {@link org.apache.commons.httpclient.auth.NTLMScheme} using JCIFS
 * org.apache.commons.httpclient.auth.NTLMScheme. <p>
 * This class has to be registered manually in order to be used:
 * <code>
 * AuthPolicy.registerAuthScheme(AuthPolicy.NTLM, NTLMScheme.class);

From source file davmail.http.NTLMv2Scheme.java

/**
 * NTLMv2 scheme implementation.
 */
public class NTLMv2Scheme implements AuthScheme {
    private static final int UNINITIATED = 0;
    private static final int INITIATED = 1;

From source file davmail.http.SpNegoScheme.java

/**
 * Implement spnego (Negotiate) authentication scheme.
 */
public class SpNegoScheme implements AuthScheme {
    private static final int UNINITIATED = 0;
    private static final int INITIATED = 1;

From source file org.apache.abdera.ext.wsse.WSSEAuthScheme.java

/**
 * WSSE Auth Scheme implementation for use with HTTP Commons AbderaClient Some APP implementations use WSSE for
 * authentication
 * 
 * @see http://www.xml.com/pub/a/2003/12/17/dive.html
 */

From source file com.owncloud.android.network.BearerAuthScheme.java

/**
 * Bearer authentication scheme as defined in RFC 6750.
 * 
 * @author David A. Velasco
 */

From source file com.owncloud.android.oc_framework.network.BearerAuthScheme.java

/**
 * Bearer authentication scheme as defined in RFC 6750.
 * 
 * @author David A. Velasco
 */

From source file org.wso2.carbon.mediator.ntlm.CustomNTLMAuthScheme.java

/**
 * AuthScheme that delegates the work of reading and writing NTLM messages to
 * the JCIFS implementation
 *
 * directly inspired by org.apache.commons.httpclient.auth.NTLMScheme
 */

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

/**
 *
 * This is a reimplementation of HTTPClient 3.x's
 * org.apache.commons.httpclient.auth.NTLMScheme.<BR/>
 *
 * It will basically use JCIFS (v1.3.17) in order to provide added support for

From source file org.apache.abdera.ext.gdata.GoogleLoginAuthScheme.java

/**
 * <p>
 * Implements the GoogleLogin auth scheme used by gdata (Blogger, Google Calendar, etc). Warning: this scheme is slow!
 * </p>
 * 
 * <pre>

From source file ir.keloud.android.lib.common.network.BearerAuthScheme.java

/**
 * Bearer authentication scheme as defined in RFC 6750.
 * 
 * @author David A. Velasco
 */