Interface UsernameToken
-
- All Known Implementing Classes:
UsernameToken
,UsernameTokenHeader
public interface UsernameToken
Representation of UsernameToken SecurityHeaderElement- Author:
- [email protected]
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getPasswordValue()
String
getUsernameValue()
void
setPasswordValue(String passwd)
sets the password value for this tokenvoid
setUsernameValue(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
-
-