public final class NTLMScheme extends Object implements AuthScheme
| Constructor and Description | 
|---|
| NTLMScheme() | 
| NTLMScheme(NTLMEngine engine) | 
| Modifier and Type | Method and Description | 
|---|---|
| String | generateAuthResponse(HttpHost host,
                    HttpRequest request,
                    HttpContext context)Generates an authorization response based on the current state. | 
| String | getName()Returns textual designation of the given authentication scheme. | 
| Principal | getPrincipal()Returns  Principalwhose credentials are used to generate
 an authentication response. | 
| String | getRealm()Returns authentication realm. | 
| boolean | isChallengeComplete()Authentication process may involve a series of challenge-response exchanges. | 
| boolean | isConnectionBased()Determines if the authentication scheme is expected to provide an authorization response
 on a per connection basis instead of the standard per request basis | 
| boolean | isResponseReady(HttpHost host,
               CredentialsProvider credentialsProvider,
               HttpContext context)Determines whether or not an authorization response can be generated based on
 the actual authentication state. | 
| void | processChallenge(AuthChallenge authChallenge,
                HttpContext context)Processes the given auth challenge. | 
| String | toString()Returns a string representation of the object. | 
public NTLMScheme()
public NTLMScheme(NTLMEngine engine)
public String generateAuthResponse(HttpHost host, HttpRequest request, HttpContext context) throws AuthenticationException
AuthSchemeCredentialsProvider prior to this method call.generateAuthResponse in interface AuthSchemerequest - The request being authenticatedcontext - HTTP contextAuthenticationException - if authorization string cannot
   be generated due to an authentication failureAuthScheme.isResponseReady(HttpHost, CredentialsProvider, HttpContext)public String getName()
AuthSchemegetName in interface AuthSchemepublic Principal getPrincipal()
AuthSchemePrincipal whose credentials are used to generate
 an authentication response. Connection based schemes are required
 to return a user Principal if authorization applies to
 for the entire life span of connection.getPrincipal in interface AuthSchemeAuthScheme.isConnectionBased()public String getRealm()
AuthSchemenull.getRealm in interface AuthSchemepublic boolean isChallengeComplete()
AuthSchemeisChallengeComplete in interface AuthSchemetrue if the authentication process has been completed,
 false otherwise.public boolean isConnectionBased()
AuthSchemeisConnectionBased in interface AuthSchemetrue if the scheme is connection based, false
 if the scheme is request based.public boolean isResponseReady(HttpHost host, CredentialsProvider credentialsProvider, HttpContext context) throws AuthenticationException
AuthSchemeisResponseReady in interface AuthSchemecredentialsProvider - The credentials to be used for authenticationcontext - HTTP contexttrue if an authorization response can be generated and
 the authentication handshake can proceed, false otherwise.AuthenticationException - if authorization string cannot
   be generated due to an authentication failurepublic void processChallenge(AuthChallenge authChallenge, HttpContext context) throws MalformedChallengeException
AuthSchemeprocessChallenge in interface AuthSchemeauthChallenge - the auth challengecontext - HTTP contextMalformedChallengeException - in case the auth challenge is incomplete,
 malformed or otherwise invalid.public String toString()
ObjecttoString method returns a
 string that "textually represents" this object. The result should be a concise but informative
 representation that is easy for a person to read. It is recommended that all subclasses override
 this method.
 
 The toString method for class Object returns a string consisting of the name of
 the class of which the object is an instance, the at-sign character `@', and the unsigned
 hexadecimal representation of the hash code of the object. In other words, this method returns a
 string equal to the value of: 
getClass().getName() + '@' + Integer.toHexString(hashCode())