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

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

Introduction

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

Usage

From source file microsoft.exchange.webservices.data.EwsJCIFSNTLMScheme.java

/**
 * This is a reimplementation of HTTPClient 3.x's
 * org.apache.commons.httpclient.auth.NTLMScheme.<BR/>
 * It will basically use JCIFS (v1.3.15) in order to provide added support for
 * NTLMv2 (instead of trying to create its own Type, 2 and 3 messages). <BR/>
 * This class has to be registered manually with HTTPClient before setting

From source file org.apache.http.contrib.auth.AWSScheme.java

/**
 * Implementation of Amazon S3 authentication. This scheme must be used
 * preemptively only.
 * <p>
 * Reference Document: {@link http
 * ://docs.amazonwebservices.com/AmazonS3/latest/index

From source file com.soundcloud.playerapi.OAuth2Scheme.java

class OAuth2Scheme implements AuthScheme {
    public HashMap<String, String> mParams;
    public HttpParams mHttpParams;
    private CloudAPI mApi;

    public static Pattern AUTHORIZATION_HEADER_PATTERN = Pattern.compile("^OAuth (\\w+)$");