Class UsernameTokenProcessor
- java.lang.Object
-
- com.sun.xml.ws.security.opt.impl.incoming.processor.UsernameTokenProcessor
-
- All Implemented Interfaces:
StreamFilter
public class UsernameTokenProcessor extends Object implements StreamFilter
- Author:
- Ashutosh.Shahi@sun.com
-
-
Constructor Summary
Constructors Constructor Description UsernameTokenProcessor()Creates a new instance of UsernameTokenProcessor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccept(XMLStreamReader reader)parses the UsernameToken and sets the members of the classStringgetCreated()StringgetIterations()StringgetNonce()StringgetPassword()StringgetPasswordDigest()StringgetPasswordType()StringgetSalt()returns the 16 byte salt for creating password derived keysStringgetUsername()
-
-
-
Method Detail
-
accept
public boolean accept(XMLStreamReader reader)
parses the UsernameToken and sets the members of the class- Specified by:
acceptin interfaceStreamFilter- Parameters:
reader- XMLStreamReader- Returns:
- boolean
-
getUsername
public String getUsername()
-
getPassword
public String getPassword()
-
getPasswordDigest
public String getPasswordDigest()
-
getPasswordType
public String getPasswordType()
-
getNonce
public String getNonce()
-
getCreated
public String getCreated()
-
getSalt
public String getSalt()
returns the 16 byte salt for creating password derived keys- Returns:
- Salt String
-
getIterations
public String getIterations()
- Returns:
- Iterations String
-
-