Uses of Class
com.microsoft.tfs.core.httpclient.auth.AuthScope

Packages that use AuthScope
com.microsoft.tfs.core.httpclient Classes and interfaces supporting the client side of the HTTP protocol. 
com.microsoft.tfs.core.httpclient.auth Provides implementation of various authentication schemes as well as utility classes that can be used to authenticate HTTP requests. 
 

Uses of AuthScope in com.microsoft.tfs.core.httpclient
 

Fields in com.microsoft.tfs.core.httpclient with type parameters of type AuthScope
protected  java.util.HashMap<AuthScope,Credentials> HttpState.credMap
          Map of credentials by realm that this HTTP state contains.
protected  java.util.HashMap<AuthScope,Credentials> HttpState.proxyCred
          Map of proxy credentials by realm that this HTTP state contains
 

Methods in com.microsoft.tfs.core.httpclient with parameters of type AuthScope
 Credentials HttpState.getCredentials(AuthScope authscope)
          Get the credentials for the given authentication scope.
 Credentials HttpState.getProxyCredentials(AuthScope authscope)
          Get the proxy credentials for the given authentication scope.
 void HttpState.setCredentials(AuthScope authscope, Credentials credentials)
          Sets the credentials for the given authentication scope.
 void HttpState.setProxyCredentials(AuthScope authscope, Credentials credentials)
          Sets the proxy credentials for the given authentication realm.
 

Uses of AuthScope in com.microsoft.tfs.core.httpclient.auth
 

Fields in com.microsoft.tfs.core.httpclient.auth declared as AuthScope
static AuthScope AuthScope.ANY
          Default scope matching any host, port, realm and authentication scheme.
 

Methods in com.microsoft.tfs.core.httpclient.auth with parameters of type AuthScope
protected  java.lang.String WRAPAuthScheme.authenticate(AuthScope authScope, Credentials credentials, HttpMethod method)
           
protected  java.lang.String NegotiateScheme.authenticate(AuthScope authscope, Credentials credentials, HttpMethod method)
           
 java.lang.String NTLMScheme.authenticate(AuthScope authscope, Credentials credentials, HttpMethod method)
           
 java.lang.String DigestScheme.authenticate(AuthScope authscope, Credentials credentials, HttpMethod method)
          Produces a digest authorization string for the given set of Credentials, method name and URI.
 java.lang.String BasicScheme.authenticate(AuthScope authscope, Credentials credentials, HttpMethod method)
          Produces basic authorization string for the given set of Credentials.
protected abstract  java.lang.String AuthorizationHeaderScheme.authenticate(AuthScope authScope, Credentials credentials, HttpMethod method)
          Provides the Authorization or Proxy-Authorization headers for authentication with the given Credentials.
 void CookieAuthScheme.authenticateHost(AuthScope authscope, Credentials credentials, HttpState state, HttpMethod method)
           
 void AuthorizationHeaderScheme.authenticateHost(AuthScope authScope, Credentials credentials, HttpState state, HttpMethod method)
           
 void AuthScheme.authenticateHost(AuthScope authscope, Credentials credentials, HttpState state, HttpMethod method)
          Configures the given HttpMethod for authentication to the host with the given Credentials.
 void WRAPAuthScheme.authenticateProxy(AuthScope authScope, Credentials credentials, HttpState state, HttpMethod method)
           
 void CookieAuthScheme.authenticateProxy(AuthScope authScope, Credentials credentials, HttpState state, HttpMethod method)
           
 void AuthorizationHeaderScheme.authenticateProxy(AuthScope authScope, Credentials credentials, HttpState state, HttpMethod method)
           
 void AuthScheme.authenticateProxy(AuthScope authScope, Credentials credentials, HttpState state, HttpMethod method)
          Configures the given HttpMethod for authentication to the proxy with the given Credentials.
 int AuthScope.match(AuthScope that)
          Tests if the authentication scopes match.
 

Constructors in com.microsoft.tfs.core.httpclient.auth with parameters of type AuthScope
AuthScope(AuthScope authscope)
          Creates a copy of the given credentials scope.
 



© 2015 Microsoft. All rights reserved.