Example usage for org.apache.http.auth UsernamePasswordCredentials subclass-usage

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

Introduction

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

Usage

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

/**
 * An OAuthAccessor, to be used as credentials for an AuthScheme based on OAuth.
 * The OAuthAccessor is contained by reference, so you can change it to contain
 * the OAuth tokens and secrets that you receive from a service provider.
 * 
 * @author John Kristian

From source file com.esri.geoevent.datastore.UsernameEncryptedPasswordCredentials.java

public class UsernameEncryptedPasswordCredentials extends UsernamePasswordCredentials {
    private static final long serialVersionUID = -2883802709045437235L;

    public UsernameEncryptedPasswordCredentials(String userName, String password) {
        super(userName, password);
    }