| java.lang.Object com.sun.xml.ws.client.HandlerConfiguration
HandlerConfiguration | public class HandlerConfiguration (Code) | | This class holds the handler information on the BindingProvider.
HandlerConfiguration is immutable, and a new object is created
when the BindingImpl is created or User calls Binding.setHandlerChain() or
SOAPBinding.setRoles()
During inovcation in Stub.process(), snapshot of the handler configuration is set in
Packet.handlerConfig
The information in the HandlerConfiguration is used by MUPipe and HandlerTube
implementations.
author: Rama Pulavarthi |
HandlerConfiguration | public HandlerConfiguration(Set<String> roles, Set<QName> portKnownHeaders, List<Handler> handlerChain, List<LogicalHandler> logicalHandlers, List<SOAPHandler> soapHandlers, List<MessageHandler> messageHandlers, Set<QName> handlerKnownHeaders)(Code) | | Parameters: roles - This contains the roles assumed by the Binding implementation. Parameters: portKnownHeaders - This contains the headers that are bound to the current WSDL Port Parameters: handlerChain - This contains the handler chain set on the Binding Parameters: logicalHandlers - Parameters: soapHandlers - Parameters: handlerKnownHeaders - The set is comprised of headers returned from SOAPHandler.getHeaders()method calls. |
getHandlerChain | public List<Handler> getHandlerChain()(Code) | | return a copy of handler chain |
getHandlerKnownHeaders | public Set<QName> getHandlerKnownHeaders()(Code) | | |
|
|