Package org.apache.http.impl.auth
Class NTLMSchemeFactory
- java.lang.Object
 - 
- org.apache.http.impl.auth.NTLMSchemeFactory
 
 
- 
- All Implemented Interfaces:
 AuthSchemeFactory,AuthSchemeProvider
@Contract(threading=IMMUTABLE) public class NTLMSchemeFactory extends java.lang.Object implements AuthSchemeFactory, AuthSchemeProvider
AuthSchemeProviderimplementation that creates and initializesNTLMSchemeinstances configured to use the defaultNTLMEngineimplementation.- Since:
 - 4.1
 
 
- 
- 
Constructor Summary
Constructors Constructor Description NTLMSchemeFactory() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthSchemecreate(HttpContext context)Creates an instance ofAuthScheme.AuthSchemenewInstance(HttpParams params)Creates an instance ofAuthSchemeusing given HTTP parameters. 
 - 
 
- 
- 
Method Detail
- 
newInstance
public AuthScheme newInstance(HttpParams params)
Description copied from interface:AuthSchemeFactoryCreates an instance ofAuthSchemeusing given HTTP parameters.- Specified by:
 newInstancein interfaceAuthSchemeFactory- Parameters:
 params- HTTP parameters.- Returns:
 - auth scheme.
 
 
- 
create
public AuthScheme create(HttpContext context)
Description copied from interface:AuthSchemeProviderCreates an instance ofAuthScheme.- Specified by:
 createin interfaceAuthSchemeProvider- Returns:
 - auth scheme.
 
 
 - 
 
 -