com.ibm.wsspi.wssecurity.token

Class IDAssertionUsernameTokenConsumer

  1. java.lang.Object
  2. extended bycom.ibm.wsspi.wssecurity.token.IDAssertionUsernameTokenConsumer
All implemented interfaces:
com.ibm.ws.webservices.wssecurity.WSSComponent, com.ibm.ws.webservices.wssecurity.WSSConsumerComponent, Initializable, TokenConsumerComponent

  1. public class IDAssertionUsernameTokenConsumer
  2. extends java.lang.Object
  3. implements TokenConsumerComponent
Consumes the identity assertion username token from the SOAP message and store it into the Subject for the later use.

Constructor Summary

Constructor and Description
IDAssertionUsernameTokenConsumer()

Method Summary

Modifier and Type Method and Description
  1. void
init(java.util.Map map)
Initializes this consumer with a TokenConsumerConfig object which is passed in by the map parameter.
  1. void
invoke(org.w3c.dom.Node target,java.util.Map context)
Consumes a username token in a SOAP message, especially for identity assertion (IDAssertion), that has no <Password> element.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

IDAssertionUsernameTokenConsumer

  1. public IDAssertionUsernameTokenConsumer( )

Method Detail

init

  1. public void init(java.util.Map map)
  2. throws SoapSecurityException
Initializes this consumer with a TokenConsumerConfig object which is passed in by the map parameter.
Specified by:
init in interface com.ibm.ws.webservices.wssecurity.WSSComponent
Specified by:
init in interface Initializable
Parameters:
map - A Map object which contains name-value pairs. These pairs includes a configuration object and <Property> elements in the configuration XMI files. In the map, the TokenConsumerConfig object is stored with a key of TokenConsumerConfig.CONFIG_KEY.
Throws:
SoapSecurityException - When there is a problem initializing the consumer
See Also:

invoke

  1. public void invoke(org.w3c.dom.Node target,
  2. java.util.Map context)
  3. throws SoapSecurityException
Consumes a username token in a SOAP message, especially for identity assertion (IDAssertion), that has no <Password> element. If a <Password> element exists, it is ignored. We assume that the login module called in this token consumer is com.ibm.wsspi.wssecurity.auth.module.IDAssertionUsernameLoginModule, or some similar one which only asks if the username exists in the user registry.
Specified by:
invoke in interface com.ibm.ws.webservices.wssecurity.WSSConsumerComponent
Parameters:
target - The element to be consumed or the Document object
context - A Map object which contains necessary name-value pairs, such as a Subject object.
Throws:
SoapSecurityException - When there is a problem during consuming the username token
See Also:
WSSConsumerComponent.invoke(org.w3c.dom.Node, java.util.Map)