Package | Description |
---|---|
edu.internet2.middleware.grouperClientExt.org.apache.commons.httpclient |
Classes and interfaces supporting the client side of the HTTP protocol.
|
edu.internet2.middleware.grouperClientExt.org.apache.commons.httpclient.auth |
Provides implementation of various authentication schemes as well as
utility classes that can be used to authenticate HTTP requests.
|
Modifier and Type | Class and Description |
---|---|
class |
NTCredentials
Credentials for use with the NTLM authentication scheme which requires additional
information. |
class |
UsernamePasswordCredentials
Username and password
Credentials . |
Modifier and Type | Method and Description |
---|---|
Credentials |
HttpState.getCredentials(AuthScope authscope)
Get the
credentials for the given authentication scope. |
Credentials |
HttpState.getCredentials(String realm,
String host)
Deprecated.
use #getCredentials(AuthScope)
|
Credentials |
HttpState.getProxyCredentials(AuthScope authscope)
Get the
proxy credentials for the given authentication scope. |
Credentials |
HttpState.getProxyCredentials(String realm,
String proxyHost)
Deprecated.
use #getProxyCredentials(AuthScope)
|
Modifier and Type | Method and Description |
---|---|
void |
HttpState.setCredentials(AuthScope authscope,
Credentials credentials)
Sets the
credentials for the given authentication
scope. |
void |
HttpState.setCredentials(String realm,
String host,
Credentials credentials)
Deprecated.
use #setCredentials(AuthScope, Credentials)
|
void |
HttpState.setProxyCredentials(AuthScope authscope,
Credentials credentials)
Sets the
proxy credentials for the given authentication
realm. |
void |
HttpState.setProxyCredentials(String realm,
String proxyHost,
Credentials credentials)
Deprecated.
use #setProxyCredentials(AuthScope, Credentials)
|
Modifier and Type | Method and Description |
---|---|
Credentials |
CredentialsProvider.getCredentials(AuthScheme scheme,
String host,
int port,
boolean proxy)
Requests additional
authentication credentials . |
Modifier and Type | Method and Description |
---|---|
String |
DigestScheme.authenticate(Credentials credentials,
HttpMethod method)
Produces a digest authorization string for the given set of
Credentials , method name and URI. |
String |
BasicScheme.authenticate(Credentials credentials,
HttpMethod method)
Produces basic authorization string for the given set of
Credentials . |
String |
AuthScheme.authenticate(Credentials credentials,
HttpMethod method)
Produces an authorization string for the given set of
Credentials . |
String |
NTLMScheme.authenticate(Credentials credentials,
HttpMethod method)
Produces NTLM authorization string for the given set of
Credentials . |
String |
DigestScheme.authenticate(Credentials credentials,
String method,
String uri)
Deprecated.
|
String |
BasicScheme.authenticate(Credentials credentials,
String method,
String uri)
Deprecated.
|
String |
AuthScheme.authenticate(Credentials credentials,
String method,
String uri)
Deprecated.
Use
AuthScheme.authenticate(Credentials, HttpMethod)
Produces an authorization string for the given set of Credentials ,
method name and URI using the given authentication scheme in response to
the actual authorization challenge. |
String |
NTLMScheme.authenticate(Credentials credentials,
String method,
String uri)
Deprecated.
|
Copyright © 2020 Internet2. All rights reserved.