Class UsernameTokenHeader
- java.lang.Object
-
- com.sun.xml.ws.security.opt.impl.incoming.UsernameTokenHeader
-
- All Implemented Interfaces:
NamespaceContextInfo
,PolicyBuilder
,SecurityElement
,SecurityElementWriter
,SecurityHeaderElement
,UsernameToken
,TokenValidator
public class UsernameTokenHeader extends Object implements UsernameToken, SecurityHeaderElement, TokenValidator, PolicyBuilder, NamespaceContextInfo, SecurityElementWriter
- Author:
- [email protected]
-
-
Constructor Summary
Constructors Constructor Description UsernameTokenHeader(XMLStreamReader reader, StreamReaderBufferCreator creator, HashMap nsDecls, XMLInputFactory staxIF)
Creates a new instance of UsernameTokenHeader
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
HashMap<String,String>
getInscopeNSContext()
map of all inscope namespace declarations.String
getIterations()
String
getLocalPart()
Gets the local name of this header element.String
getNamespaceURI()
String
getPasswordValue()
WSSPolicy
getPolicy()
returns theWSSPolicy
that was created for the SecurityHeaderElementString
getSalt()
String
getUsernameValue()
XMLStreamReader
readHeader()
Reads the header as aXMLStreamReader
.boolean
refersToSecHdrWithId(String id)
void
setId(String id)
void
setIterations(int iterate)
void
setPasswordValue(String passwd)
sets the password value for this tokenvoid
setSalt(String receivedSalt)
void
setUsernameValue(String username)
sets the username value for this tokenvoid
validate(ProcessingContext context)
Peforms token validation , eg: In case BinarySecurityToken checks if the token is valid.void
writeTo(OutputStream os)
void
writeTo(XMLStreamWriter streamWriter)
Writes out the header.void
writeTo(XMLStreamWriter streamWriter, HashMap props)
-
-
-
Constructor Detail
-
UsernameTokenHeader
public UsernameTokenHeader(XMLStreamReader reader, StreamReaderBufferCreator creator, HashMap nsDecls, XMLInputFactory staxIF) throws XMLStreamException, XMLStreamBufferException
Creates a new instance of UsernameTokenHeader
-
-
Method Detail
-
validate
public void validate(ProcessingContext context) throws XWSSecurityException
Description copied from interface:TokenValidator
Peforms token validation , eg: In case BinarySecurityToken checks if the token is valid.- Specified by:
validate
in interfaceTokenValidator
- Throws:
XWSSecurityException
-
getPolicy
public WSSPolicy getPolicy()
Description copied from interface:PolicyBuilder
returns theWSSPolicy
that was created for the SecurityHeaderElement- Specified by:
getPolicy
in interfacePolicyBuilder
- Returns:
WSSPolicy
-
refersToSecHdrWithId
public boolean refersToSecHdrWithId(String id)
- Specified by:
refersToSecHdrWithId
in interfaceSecurityHeaderElement
- Returns:
-
getId
public String getId()
- Specified by:
getId
in interfaceSecurityElement
- Returns:
- id
-
setId
public void setId(String id)
- Specified by:
setId
in interfaceSecurityElement
-
getNamespaceURI
public String getNamespaceURI()
- Specified by:
getNamespaceURI
in interfaceSecurityElement
- Returns:
- namespace uri of the security header element.
-
getLocalPart
public String getLocalPart()
Description copied from interface:SecurityElement
Gets the local name of this header element.- Specified by:
getLocalPart
in interfaceSecurityElement
- Returns:
- this string must be interned.
-
readHeader
public XMLStreamReader readHeader() throws XMLStreamException
Description copied from interface:SecurityElement
Reads the header as aXMLStreamReader
.The returned parser points at the start element of this header. (IOW,
XMLStreamReader.getEventType()
would returnXMLStreamConstants.START_ELEMENT
.Performance Expectation
For some Header implementations, this operation is a non-trivial operation. Therefore, use of this method is discouraged unless the caller is interested in reading the whole header.
Similarly, if the caller wants to use this method only to do the API conversion (such as simply firing SAX events from
XMLStreamReader
), then the JAX-WS team requests that you talk to us.Messages that come from tranport usually provides a reasonably efficient implementation of this method.
- Specified by:
readHeader
in interfaceSecurityElement
- Returns:
- must not null.
- Throws:
XMLStreamException
-
writeTo
public void writeTo(OutputStream os)
- Specified by:
writeTo
in interfaceSecurityElementWriter
-
writeTo
public void writeTo(XMLStreamWriter streamWriter) throws XMLStreamException
Description copied from interface:SecurityElementWriter
Writes out the header.- Specified by:
writeTo
in interfaceSecurityElementWriter
- Throws:
XMLStreamException
- if the operation fails for some reason. This leaves the writer to an undefined state.
-
getUsernameValue
public String getUsernameValue()
- Specified by:
getUsernameValue
in interfaceUsernameToken
- Returns:
- the username value
-
setUsernameValue
public void setUsernameValue(String username)
Description copied from interface:UsernameToken
sets the username value for this token- Specified by:
setUsernameValue
in interfaceUsernameToken
- Parameters:
username
- username value
-
getPasswordValue
public String getPasswordValue()
- Specified by:
getPasswordValue
in interfaceUsernameToken
- Returns:
- the password for this token
-
setPasswordValue
public void setPasswordValue(String passwd)
Description copied from interface:UsernameToken
sets the password value for this token- Specified by:
setPasswordValue
in interfaceUsernameToken
- Parameters:
passwd
- the password value
-
setSalt
public void setSalt(String receivedSalt)
-
getSalt
public String getSalt()
-
setIterations
public void setIterations(int iterate)
-
getIterations
public String getIterations()
-
getInscopeNSContext
public HashMap<String,String> getInscopeNSContext()
Description copied from interface:NamespaceContextInfo
map of all inscope namespace declarations.- Specified by:
getInscopeNSContext
in interfaceNamespaceContextInfo
- Returns:
HashMap
of all inscope namespaces.
-
writeTo
public void writeTo(XMLStreamWriter streamWriter, HashMap props) throws XMLStreamException
- Specified by:
writeTo
in interfaceSecurityElementWriter
- Throws:
XMLStreamException
-
-