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

Packages that use Handler
org.apache.axis2   
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.local   
org.apache.axis2.transport.mail   
org.apache.axis2.transport.tcp   
org.apache.axis2.util   
 

Uses of Handler in org.apache.axis2
 

Classes in org.apache.axis2 that implement Handler
 class InstanceDispatcher
           
 

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, it is a Handler which has a one traget, that is to find the Service a given SOAP message is targeted to.
 class AddressingBasedDispatcher
          Dispatcher based on the WS-Addressing properties
 class DispatchingChecker
          This one is run after all the dispatchers and make a Operation and a Service is idenitified if the message to go any further
 class RequestURIBasedDispatcher
          Dispatches the service based on the information from the traget endpoint URL
 class SOAPActionBasedDispatcher
          Dispatches based on the SOAPAction
 class SOAPMessageBodyBasedDispatcher
          Dispatches based on the namespace URI of the first child of the Body.
 class SOAPProcessingModelChecker
          This handler checks that the SOAP processing model rules have been followed by the various modules and handlers.
 

Methods in org.apache.axis2.engine with parameters of type Handler
 void Phase.addHandler(Handler handler, int index)
          Method addHandler
 void Phase.addHandler(Handler handler)
          add to next empty handler
 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 AddressingInHandler
           
 class AddressingOutHandler
           
 

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.local
 

Classes in org.apache.axis2.transport.local that implement Handler
 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, java.lang.String phaseName)