org.apache.commons.httpclient
public class NTCredentials extends UsernamePasswordCredentials
Since: 2.0
Version: $Revision: 480424 $ $Date: 2006-11-29 06:56:49 +0100 (Wed, 29 Nov 2006) $
Constructor Summary | |
---|---|
NTCredentials()
Default constructor.
| |
NTCredentials(String userName, String password, String host, String domain)
Constructor. |
Method Summary | |
---|---|
boolean | equals(Object o)
Performs a case-sensitive check to see if the components of the credentials
are the same.
|
String | getDomain()
Retrieves the name to authenticate with.
|
String | getHost()
Retrieves the host name of the computer originating the request.
|
int | hashCode()
Computes a hash code based on all the case-sensitive parts of the credentials object.
|
void | setDomain(String domain)
Sets the domain to authenticate with. |
void | setHost(String host)
Sets the host name of the computer originating the request. |
String | toString()
Return a string representation of this object. |
Deprecated: Do not use. Null user name, domain & host no longer allowed
Default constructor.Parameters: userName The user name. This should not include the domain to authenticate with. For example: "user" is correct whereas "DOMAIN\\user" is not. password The password. host The host the authentication request is originating from. Essentially, the computer name for this machine. domain The domain to authenticate within.
Parameters: o The object to match.
Returns: true
if all of the credentials match.
Returns: String the domain these credentials are intended to authenticate with.
Returns: String the host the user is logged into.
Returns: The hash code for the credentials.
Deprecated: Do not use. The NTCredentials objects should be immutable
Sets the domain to authenticate with. The domain may not be null.Parameters: domain the NT domain to authenticate in.
Deprecated: Do not use. The NTCredentials objects should be immutable
Sets the host name of the computer originating the request. The host name may not be null.Parameters: host the Host the user is logged into.
Returns: A string represenation of this object.