Interface UsernameToken
-
- All Known Implementing Classes:
UsernameToken,UsernameTokenHeader
public interface UsernameTokenRepresentation of UsernameToken SecurityHeaderElement- Author:
- Ashutosh.Shahi@sun.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPasswordValue()StringgetUsernameValue()voidsetPasswordValue(String passwd)sets the password value for this tokenvoidsetUsernameValue(String username)sets the username value for this token
-
-
-
Method Detail
-
getUsernameValue
String getUsernameValue()
- Returns:
- the username value
-
setUsernameValue
void setUsernameValue(String username)
sets the username value for this token- Parameters:
username- username value
-
getPasswordValue
String getPasswordValue()
- Returns:
- the password for this token
-
setPasswordValue
void setPasswordValue(String passwd)
sets the password value for this token- Parameters:
passwd- the password value
-
-