| java.lang.Object gov.nist.siplite.stack.authentication.Credentials
Credentials | public Credentials(String userName, String password, String realm)(Code) | | Creates a new Credential composed of a username password and realm
for later user by the API when a 401 or 407 Message will be received
Parameters: userName - - the user name Parameters: password - - the password Parameters: realm - - the realm |
getPassword | public String getPassword()(Code) | | Gets the password for this credential
the password for this credential |
getRealm | public String getRealm()(Code) | | Gets the realm for this credential
the realm for this credential |
getUserName | public String getUserName()(Code) | | Gets the user name for this credential
the user name for this credential |
setPassword | public void setPassword(String password)(Code) | | Sets the password for this credential
Parameters: password - - the password for this credential |
setRealm | public void setRealm(String realm)(Code) | | Sets the realm for this credential
Parameters: realm - - the realm for this credential |
setUserName | public void setUserName(String userName)(Code) | | Sets the user name for this credential
Parameters: userName - - the user name for this credential |
|
|