Package org.apache.axis.client
Class Service.HandlerRegistryImpl
- java.lang.Object
-
- org.apache.axis.client.Service.HandlerRegistryImpl
-
- All Implemented Interfaces:
java.io.Serializable,HandlerRegistry
- Enclosing class:
- Service
protected static class Service.HandlerRegistryImpl extends java.lang.Object implements HandlerRegistry
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedHandlerRegistryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.ListgetHandlerChain(QName portName)Gets the handler chain for the specified service endpoint.voidsetHandlerChain(QName portName, java.util.List chain)Sets the handler chain for the specified service endpoint as ajava.util.List.
-
-
-
Method Detail
-
getHandlerChain
public java.util.List getHandlerChain(QName portName)
Description copied from interface:HandlerRegistryGets the handler chain for the specified service endpoint. The returnedListis used to configure this specific handler chain in thisHandlerRegistry. Each element in this list is required to be of the Java typejavax.xml.rpc.handler.HandlerInfo.- Specified by:
getHandlerChainin interfaceHandlerRegistry- Parameters:
portName- Qualified name of the target service- Returns:
- HandlerChain java.util.List Handler chain
-
setHandlerChain
public void setHandlerChain(QName portName, java.util.List chain)
Description copied from interface:HandlerRegistrySets the handler chain for the specified service endpoint as ajava.util.List. Each element in this list is required to be of the Java typejavax.xml.rpc.handler.HandlerInfo.- Specified by:
setHandlerChainin interfaceHandlerRegistry- Parameters:
portName- Qualified name of the target service endpointchain- a List representing configuration for the handler chain
-
-