Uses of Class
com.sun.xml.ws.api.pipe.helper.AbstractTubeImpl

Packages that use AbstractTubeImpl
com.sun.xml.ws.addressing   
com.sun.xml.ws.api.pipe Pipe and related abstractions. 
com.sun.xml.ws.api.pipe.helper Default partial implementations of Pipe
com.sun.xml.ws.client JAX-WS 2.0.1 Client Runtime 
com.sun.xml.ws.handler   
com.sun.xml.ws.protocol.soap   
com.sun.xml.ws.server JAX-WS 2.0.1 Server Runtime 
com.sun.xml.ws.server.provider   
com.sun.xml.ws.server.sei   
com.sun.xml.ws.transport   
com.sun.xml.ws.transport.http.client   
com.sun.xml.ws.transport.local Transport implementations that work inside the single JVM. 
com.sun.xml.ws.util.pipe   
 

Uses of AbstractTubeImpl in com.sun.xml.ws.addressing
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.addressing
 class WsaClientTube
          WsaClientTube appears in the Tubeline only if addressing is enabled.
 class WsaServerTube
          Handles WS-Addressing for the server.
(package private)  class WsaTube
          WS-Addressing processing code shared between client and server.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.api.pipe
 

Methods in com.sun.xml.ws.api.pipe with parameters of type AbstractTubeImpl
 void PipeCloner.add(AbstractTubeImpl original, AbstractTubeImpl copy)
          Deprecated. Disambiguation version.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.api.pipe.helper
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.api.pipe.helper
 class AbstractFilterTubeImpl
          Convenient default implementation for filtering Tube.
 class PipeAdapter
          Tube that invokes Pipe.
 

Methods in com.sun.xml.ws.api.pipe.helper that return AbstractTubeImpl
 AbstractTubeImpl AbstractTubeImpl.copy(PipeCloner cloner)
          Needs to be implemented by the derived class, but we can't make it abstract without upsetting javac.
abstract  AbstractTubeImpl AbstractTubeImpl.copy(TubeCloner cloner)
           
 

Constructors in com.sun.xml.ws.api.pipe.helper with parameters of type AbstractTubeImpl
AbstractTubeImpl(AbstractTubeImpl that, TubeCloner cloner)
          Copy constructor.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.client
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.client
 class ClientSchemaValidationTube
          Tube that does the schema validation on the client side.
 

Methods in com.sun.xml.ws.client that return AbstractTubeImpl
 AbstractTubeImpl ClientSchemaValidationTube.copy(TubeCloner cloner)
           
 

Uses of AbstractTubeImpl in com.sun.xml.ws.handler
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.handler
 class ClientLogicalHandlerTube
           
 class ClientMessageHandlerTube
           
 class ClientSOAPHandlerTube
           
 class HandlerTube
           
 class ServerLogicalHandlerTube
           
 class ServerMessageHandlerTube
           
 class ServerSOAPHandlerTube
           
 

Uses of AbstractTubeImpl in com.sun.xml.ws.protocol.soap
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.protocol.soap
 class ClientMUTube
          Performs soap mustUnderstand processing for clients.
(package private)  class MUTube
           
 class ServerMUTube
           
 

Uses of AbstractTubeImpl in com.sun.xml.ws.server
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.server
 class InvokerTube<T>
          Base code for ProviderInvokerTube and SEIInvokerTube.
 class ServerSchemaValidationTube
          Tube that does the schema validation on the server side.
 

Methods in com.sun.xml.ws.server that return AbstractTubeImpl
 AbstractTubeImpl ServerSchemaValidationTube.copy(TubeCloner cloner)
           
 AbstractTubeImpl InvokerTube.copy(TubeCloner cloner)
          processRequest() and processResponse() do not share any instance variables while processing the request.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.server.provider
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.server.provider
(package private)  class AsyncProviderInvokerTube<T>
          This Tube is used to invoke the AsyncProvider endpoints.
 class ProviderInvokerTube<T>
          This Tube is used to invoke the Provider and AsyncProvider endpoints.
(package private)  class SyncProviderInvokerTube<T>
          This tube is used to invoke the Provider endpoints.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.server.sei
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.server.sei
 class SEIInvokerTube
          This pipe is used to invoke SEI based endpoints.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.transport
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.transport
 class DeferredTransportPipe
          Proxy transport Tube and Pipe that lazily determines the actual transport pipe by looking at Packet.endpointAddress.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.transport.http.client
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.transport.http.client
 class HttpTransportPipe
          Pipe and Tube that sends a request to a remote HTTP server.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.transport.local
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.transport.local
(package private)  class LocalAsyncTransportTube
          Transport Tube that routes a message to a service that runs within it.
(package private)  class LocalTransportTube
          Transport Tube that routes a message to a service that runs within it.
 

Uses of AbstractTubeImpl in com.sun.xml.ws.util.pipe
 

Subclasses of AbstractTubeImpl in com.sun.xml.ws.util.pipe
 class AbstractSchemaValidationTube
          Tube that does the schema validation.
 class DumpTube
          Pipe that dumps messages that pass through.
 

Methods in com.sun.xml.ws.util.pipe that return AbstractTubeImpl
 AbstractTubeImpl DumpTube.copy(TubeCloner cloner)