public interface HandlerChain extends List
Modifier and Type | Method and Description |
---|---|
void |
destroy()
Indicates the end of lifecycle for a HandlerChain.
|
String[] |
getRoles()
Gets SOAP actor roles registered for this HandlerChain at this SOAP node.
|
boolean |
handleFault(MessageContext msgContext)
The handleFault method initiates the SOAP fault processing for this handler chain.
|
boolean |
handleRequest(MessageContext msgContext)
The handleRequest method initiates the request processing for this handler chain.
|
boolean |
handleResponse(MessageContext msgContext)
The handleResponse method initiates the response processing for this handler chain.
|
void |
init(Map config)
Initializes the configuration for a HandlerChain.
|
void |
setRoles(String[] soapActorNames)
Sets SOAP Actor roles for this HandlerChain.
|
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
parallelStream, removeIf, stream
void init(Map config)
config
- Configuration for the initialization of this handler chainJAXRPCException
- If any error during initializationvoid destroy()
JAXRPCException
- If any error during destroyString[] getRoles()
void setRoles(String[] soapActorNames)
soapActorNames
- URIs for SOAP actor nameboolean handleRequest(MessageContext msgContext)
msgContext
- MessageContext parameter provides access to the request SOAP message.JAXRPCException
- if any processing error happensboolean handleResponse(MessageContext msgContext)
JAXRPCException
- if any processing error happensboolean handleFault(MessageContext msgContext)
JAXRPCException
- if any processing error happensCopyright © 2016 JBoss by Red Hat. All rights reserved.