|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Handler | |
org.codehaus.activesoap | The core API and classes for the SOAP stack |
org.codehaus.activesoap.handler | Default Handler implementations for processing individual SOAP headers or the body using various XML APIs like SAX or XML binding technologies like XMLBeans |
org.codehaus.activesoap.handler.stax | Handler implementation and related classes for using pure StAX |
org.codehaus.activesoap.handler.xmlbeans | Handler implementation and related classes for processing REST and web services using XMLBeans |
org.codehaus.activesoap.handler.xstream | Handler implementation and related classes for processing REST and web services using XStream |
org.codehaus.activesoap.impl | |
org.codehaus.activesoap.policy.addressing.handler | |
org.codehaus.activesoap.wsif | A WSIF provider for ActiveSOAP |
Uses of Handler in org.codehaus.activesoap |
Classes in org.codehaus.activesoap that implement Handler | |
protected class |
SoapClient.ResponseHandler
|
Methods in org.codehaus.activesoap that return Handler | |
Handler |
RestService.getRootHandler()
|
Handler |
HandlerRegistry.getHandler(QName name)
Returns the handler bound to the given QName
or null if no handler is bound to this name |
Handler |
HandlerRegistry.removeHandler(QName name)
Removes the handler associated with the given QName |
Handler |
HandlerRegistry.removeHandler(String namepaceURI)
Removes the handler associated with the given namespace URI |
Handler |
HandlerRegistry.removeHandler(String namepaceURI,
Handler handler)
Removes the handler associated with the given namespace URI |
Handler |
HandlerRegistry.getBodyHandler()
Returns the handler that should be used to process the body elements which by default will be a QNameHandler which delegates to the
handler for the current QName otherwise using the handler returned
by HandlerRegistry.getDefaultHandler() |
Handler |
HandlerRegistry.getDefaultHandler()
Returns the default handler which is used when processing body elements which have no QName matching handler. |
Methods in org.codehaus.activesoap with parameters of type Handler | |
void |
RestService.setRootHandler(Handler rootHandler)
|
void |
SoapClient.addHeaderHandler(Handler handler)
|
void |
SoapClient.removeHeaderHandler(Handler handler)
|
protected void |
SoapClient.processBody(MessageExchange exchange,
XMLStreamWriter out,
Handler generateBodyHandler)
|
void |
HandlerRegistry.addHandler(String namepaceURI,
Handler handler)
Adds a new handler for the given namespace URI |
void |
HandlerRegistry.addHandler(String[] namespaceURIs,
Handler handler)
Adds a new handle to a number of different namespace URIs (typically to handle multiple version URIs for the same handler) |
void |
HandlerRegistry.removeHandler(String[] namespaceURIs,
Handler handler)
Removes a handler from a number of different namespace URIs (typically to handle multiple version URIs for the same handler) |
void |
HandlerRegistry.addHandler(QName name,
Handler handler)
Adds a new handler for the given QName |
Handler |
HandlerRegistry.removeHandler(String namepaceURI,
Handler handler)
Removes the handler associated with the given namespace URI |
void |
HandlerRegistry.setBodyHandler(Handler bodyHandler)
Sets the handler used to process body elements |
void |
HandlerRegistry.setDefaultHandler(Handler defaultHandler)
Sets the default handler used to process body elements if no handlers are found for a given QName |
void |
RestClient.invokeOneWay(Handler generateBodyHandler)
|
void |
RestClient.invokeOneWay(MessageExchange exchange,
Handler generateBodyHandler)
|
XMLStreamReader |
RestClient.invokeRequestReply(Handler generateBodyHandler)
|
XMLStreamReader |
RestClient.invokeRequestReply(MessageExchange exchange,
Handler generateBodyHandler)
|
protected XMLStreamReader |
RestClient.invokeRequestReply(MessageExchange exchange,
XMLStreamWriter out,
Handler generateBodyHandler,
Invocation request)
|
protected void |
RestClient.processBody(MessageExchange exchange,
XMLStreamWriter out,
Handler generateBodyHandler)
|
Uses of Handler in org.codehaus.activesoap.handler |
Subinterfaces of Handler in org.codehaus.activesoap.handler | |
interface |
HandlerLifecycle
A lifecycle callback to allow handlers to be aware of when requests complete |
Classes in org.codehaus.activesoap.handler that implement Handler | |
class |
EchoHandler
Echos the block of XML straight to the output such as for pass-through handlers or forwarding services and routers. |
class |
NullHandler
A handler which consumes the data but does nothing |
class |
ProcedureNotPresentHandler
A default body handler to throw a SoapFault when called on an unmatched procedure. |
class |
QNameHandler
Looks up the correct Handler to use
based on the QName of the root element |
class |
SAXHandler
|
class |
SoapHandler
A handler which processes a SOAP envelope using a specific SOAP protocol. |
class |
SoapRequestHandler
A processor of a single SOAP request which is discarded after it has completed the request. |
class |
TransformHandler
Pipes the input into some kind of transformer to generate the response |
Methods in org.codehaus.activesoap.handler that return Handler | |
Handler |
DefaultHandlerRegistry.getHandler(QName name)
|
Handler |
DefaultHandlerRegistry.removeHandler(QName name)
|
Handler |
DefaultHandlerRegistry.removeHandler(String namepaceURI)
|
Handler |
DefaultHandlerRegistry.removeHandler(String namepaceURI,
Handler handler)
|
Handler |
DefaultHandlerRegistry.getBodyHandler()
|
Handler |
DefaultHandlerRegistry.getDefaultHandler()
|
Methods in org.codehaus.activesoap.handler with parameters of type Handler | |
void |
DefaultHandlerRegistry.addHandler(String namepaceURI,
Handler handler)
|
void |
DefaultHandlerRegistry.addHandler(String[] namespaceURIs,
Handler handler)
|
void |
DefaultHandlerRegistry.removeHandler(String[] namespaceURIs,
Handler handler)
|
void |
DefaultHandlerRegistry.addHandler(QName name,
Handler handler)
|
Handler |
DefaultHandlerRegistry.removeHandler(String namepaceURI,
Handler handler)
|
void |
DefaultHandlerRegistry.setBodyHandler(Handler bodyHandler)
|
void |
DefaultHandlerRegistry.setDefaultHandler(Handler defaultHandler)
|
Constructors in org.codehaus.activesoap.handler with parameters of type Handler | |
DefaultHandlerRegistry(Handler defaultHandler)
|
Uses of Handler in org.codehaus.activesoap.handler.stax |
Classes in org.codehaus.activesoap.handler.stax that implement Handler | |
class |
StaxHandler
A useful base class for any handlers implementd directly on top of StAX\ |
class |
StaxOutputHandler
|
Methods in org.codehaus.activesoap.handler.stax that return Handler | |
Handler |
StaxClientHandler.createMethodHandler(Method method,
Object[] args)
|
Handler |
StaxClientHandler.createBodyHandler(Object object)
|
Uses of Handler in org.codehaus.activesoap.handler.xmlbeans |
Classes in org.codehaus.activesoap.handler.xmlbeans that implement Handler | |
class |
XMLBeanInvokeMethodHandler
|
class |
XMLBeansHandler
Processes an XML document using XMLBeans |
class |
XMLBeansInvokeMethodHandler
|
class |
XMLBeansOutputHandler
Generates a REST/SOAP invocation body from a method call with arguments. |
Methods in org.codehaus.activesoap.handler.xmlbeans that return Handler | |
Handler |
XMLBeansClientHandler.createMethodHandler(Method method,
Object[] args)
|
Handler |
XMLBeansClientHandler.createBodyHandler(Object object)
|
Uses of Handler in org.codehaus.activesoap.handler.xstream |
Classes in org.codehaus.activesoap.handler.xstream that implement Handler | |
class |
XStreamHandler
|
class |
XStreamInvokeMethodHandler
|
class |
XStreamOutputHandler
Generates a REST/SOAP invocation body from a method call with arguments. |
Methods in org.codehaus.activesoap.handler.xstream that return Handler | |
Handler |
XStreamClientHandler.createMethodHandler(Method method,
Object[] args)
|
Handler |
XStreamClientHandler.createBodyHandler(Object object)
|
Uses of Handler in org.codehaus.activesoap.impl |
Methods in org.codehaus.activesoap.impl that return Handler | |
Handler |
ClientHandler.createMethodHandler(Method method,
Object[] args)
Creates a handler capable of generating the body of the request |
Handler |
ClientHandler.createBodyHandler(Object object)
Creates a handler capable of generating the body of the request |
Uses of Handler in org.codehaus.activesoap.policy.addressing.handler |
Classes in org.codehaus.activesoap.policy.addressing.handler that implement Handler | |
class |
AddressingClientHandler
Implements a client side handler which appends any WS-Addressing headers. |
class |
AttributedQNameHandler
|
class |
AttributedURIHandler
|
class |
EndpointReferenceTypeHandler
|
class |
RelationshipHandler
|
class |
ServiceNameTypeHandler
|
Uses of Handler in org.codehaus.activesoap.wsif |
Classes in org.codehaus.activesoap.wsif that implement Handler | |
class |
WSIFHandler
Fires the parts of the given message into the handler for invocations from WSIF into ActiveSOAP |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |