javax.xml.rpc.handler
public class: HandlerInfo [javadoc |
source]
java.lang.Object
javax.xml.rpc.handler.HandlerInfo
All Implemented Interfaces:
Serializable
The
javax.xml.rpc.handler.HandlerInfo represents
information about a handler in the HandlerChain. A HandlerInfo
instance is passed in the
Handler.init method to
initialize a
Handler instance.
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.xml.rpc.handler.HandlerInfo Detail: |
public Class getHandlerClass() {
return handlerClass;
}
|
public Map getHandlerConfig() {
return config;
}
Gets the Handler configuration. |
public QName[] getHeaders() {
return headers;
}
Gets the header blocks processed by this Handler. |
public void setHandlerClass(Class handlerClass) {
this.handlerClass = handlerClass;
}
|
public void setHandlerConfig(Map config) {
this.config = config;
}
Sets the Handler configuration as java.util.Map |
public void setHeaders(QName[] headers) {
this.headers = headers;
}
Sets the header blocks processed by this Handler. |