Uses of Interface
org.apache.axis2.engine.Handler

Packages that use Handler
org.apache.axis2.description   
org.apache.axis2.engine   
org.apache.axis2.handlers   
org.apache.axis2.handlers.addressing   
org.apache.axis2.security   
org.apache.axis2.security.handler   
org.apache.axis2.transport   
org.apache.axis2.transport.http   
org.apache.axis2.transport.jms   
org.apache.axis2.transport.local   
org.apache.axis2.transport.mail   
org.apache.axis2.transport.tcp   
org.apache.axis2.util   
 

Uses of Handler in org.apache.axis2.description
 

Methods in org.apache.axis2.description that return Handler
 Handler HandlerDescription.getHandler()
           
 

Methods in org.apache.axis2.description with parameters of type Handler
 void HandlerDescription.setHandler(Handler handler)
           
 

Uses of Handler in org.apache.axis2.engine
 

Classes in org.apache.axis2.engine that implement Handler
 class AbstractDispatcher
          This the base class for all dispatchers.
 class AddressingBasedDispatcher
          Dispatcher based on the WS-Addressing properties.
 class DispatchPhase
           
 class InstanceDispatcher
          By the time the control comes to this handler, the dispatching must have happened so that the message context contains the AxisServiceGroup, AxisService and AxisOperation.
 class Phase
          A Phase is an ordered collection of Handlers.
 class RequestURIBasedDispatcher
          Dispatches the service based on the information from the target endpoint URL.
 class SOAPActionBasedDispatcher
          Dispatches based on the SOAPAction.
 class SOAPMessageBodyBasedDispatcher
          Dispatches based on the namespace URI of the first child of the body.
 

Methods in org.apache.axis2.engine with parameters of type Handler
 void Phase.addHandler(Handler handler)
          Adds handler to the collection.
 void Phase.addHandler(Handler handler, int index)
          Method addHandler.
 void Phase.setPhaseFirst(Handler phaseFirst)
          Method setPhaseFirst.
 void Phase.setPhaseLast(Handler phaseLast)
          Method setPhaseLast.
 

Uses of Handler in org.apache.axis2.handlers
 

Classes in org.apache.axis2.handlers that implement Handler
 class AbstractHandler
          Class AbstractHandler
 

Uses of Handler in org.apache.axis2.handlers.addressing
 

Classes in org.apache.axis2.handlers.addressing that implement Handler
 class AddressingFinalInHandler
           
 class AddressingFinalOutHandler
           
 class AddressingHandler
           
 class AddressingInHandler
           
 class AddressingOutHandler
           
 class AddressingSubmissionInHandler
           
 class AddressingSubmissionOutHandler
           
 

Uses of Handler in org.apache.axis2.security
 

Classes in org.apache.axis2.security that implement Handler
 class WSDoAllReceiver
           
 class WSDoAllSender
           
 

Uses of Handler in org.apache.axis2.security.handler
 

Classes in org.apache.axis2.security.handler that implement Handler
 class WSDoAllHandler
          Class WSDoAllHandler
 

Uses of Handler in org.apache.axis2.transport
 

Subinterfaces of Handler in org.apache.axis2.transport
 interface TransportSender
          This send the SOAP Message to other SOAP nodes and this alone write the SOAP Message to the wire.
 

Classes in org.apache.axis2.transport that implement Handler
 class AbstractTransportSender
          By the time this Class is invoked either the To EPR on the MessageContext should be set or TRANSPORT_WRITER property set in the message Context with a Writer.
 

Uses of Handler in org.apache.axis2.transport.http
 

Classes in org.apache.axis2.transport.http that implement Handler
 class CommonsHTTPTransportSender
           
 

Uses of Handler in org.apache.axis2.transport.jms
 

Classes in org.apache.axis2.transport.jms that implement Handler
 class JMSSender
          This is meant to be used on a SOAP Client to call a SOAP server.
 

Uses of Handler in org.apache.axis2.transport.local
 

Classes in org.apache.axis2.transport.local that implement Handler
 class LocalResponder
          LocalResponder
 class LocalTransportSender
           
 

Uses of Handler in org.apache.axis2.transport.mail
 

Classes in org.apache.axis2.transport.mail that implement Handler
 class MailTransportSender
           
 

Uses of Handler in org.apache.axis2.transport.tcp
 

Classes in org.apache.axis2.transport.tcp that implement Handler
 class TCPTransportSender
           
 

Uses of Handler in org.apache.axis2.util
 

Methods in org.apache.axis2.util with parameters of type Handler
static void Utils.addHandler(Flow flow, Handler handler, String phaseName)