Uses of Interface
com.sun.xml.ws.api.pipe.Codec

Packages that use Codec
com.sun.xml.ws.api JAX-WS RI extension of JAX-WS API. 
com.sun.xml.ws.api.pipe Pipe and related abstractions. 
com.sun.xml.ws.api.server APIs for hosting JAX-WS services. 
com.sun.xml.ws.binding   
com.sun.xml.ws.encoding   
com.sun.xml.ws.encoding.xml   
com.sun.xml.ws.server JAX-WS 2.0.1 Server Runtime 
com.sun.xml.ws.transport.http   
com.sun.xml.ws.transport.http.client   
com.sun.xml.ws.transport.local Transport implementations that work inside the single JVM. 
 

Uses of Codec in com.sun.xml.ws.api
 

Methods in com.sun.xml.ws.api that return Codec
abstract  Codec BindingID.createEncoder(WSBinding binding)
          Creates a new Codec for this binding.
 

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

Subinterfaces of Codec in com.sun.xml.ws.api.pipe
 interface SOAPBindingCodec
           
 interface StreamSOAPCodec
          Reads events from XMLStreamReader and constructs a Message for SOAP envelope.
 

Methods in com.sun.xml.ws.api.pipe that return Codec
 Codec Codec.copy()
          Creates a copy of this Codec.
 Codec ServerTubeAssemblerContext.getCodec()
          Gets the Codec that is set by ServerTubeAssemblerContext.setCodec(com.sun.xml.ws.api.pipe.Codec) or the default codec based on the binding.
 Codec ClientTubeAssemblerContext.getCodec()
          Gets the Codec that is set by ClientTubeAssemblerContext.setCodec(com.sun.xml.ws.api.pipe.Codec) or the default codec based on the binding.
 

Methods in com.sun.xml.ws.api.pipe with parameters of type Codec
 void ServerTubeAssemblerContext.setCodec(Codec codec)
          Interception point to change Codec during Tubeline assembly.
 void ClientTubeAssemblerContext.setCodec(Codec codec)
          Interception point to change Codec during Tubeline assembly.
 

Constructors in com.sun.xml.ws.api.pipe with parameters of type Codec
ClientTubeAssemblerContext(EndpointAddress address, WSDLPort wsdlModel, WSService rootOwner, WSBinding binding, Container container, Codec codec)
           
ClientTubeAssemblerContext(EndpointAddress address, WSDLPort wsdlModel, WSService rootOwner, WSBinding binding, Container container, Codec codec, SEIModel seiModel)
           
 

Uses of Codec in com.sun.xml.ws.api.server
 

Subinterfaces of Codec in com.sun.xml.ws.api.server
 interface EndpointAwareCodec
          Implemented by Codecs that want to have access to WSEndpoint object.
 

Fields in com.sun.xml.ws.api.server declared as Codec
 Codec Adapter.Toolkit.codec
          For encoding/decoding infoset to/from the byte stream.
 

Methods in com.sun.xml.ws.api.server that return Codec
abstract  Codec WSEndpoint.createCodec()
          Gets the Endpoint's codec that is used to encode/decode Messages.
 

Methods in com.sun.xml.ws.api.server with parameters of type Codec
protected  Packet AbstractServerAsyncTransport.decodePacket(T connection, Codec codec)
          decodes the transport data to Packet
protected abstract  void AbstractServerAsyncTransport.encodePacket(T connection, Packet packet, Codec codec)
          Encodes the Packet to infoset and writes on the connection.
 

Uses of Codec in com.sun.xml.ws.binding
 

Methods in com.sun.xml.ws.binding that return Codec
 Codec BindingImpl.createCodec()
           
 

Uses of Codec in com.sun.xml.ws.encoding
 

Subinterfaces of Codec in com.sun.xml.ws.encoding
 interface RootOnlyCodec
          Codec that works only on the root part of the MIME/multipart.
 

Classes in com.sun.xml.ws.encoding that implement Codec
(package private)  class MimeCodec
          Codecs that uses the MIME multipart as the underlying format.
 class MtomCodec
          Mtom messge Codec.
 class SOAPBindingCodec
          SOAP binding Codec that can handle MTOM, SwA, and SOAP messages encoded using XML or Fast Infoset.
(package private)  class StreamSOAP11Codec
          StreamSOAPCodec for SOAP 1.1.
(package private)  class StreamSOAP12Codec
          StreamSOAPCodec for SOAP 1.2.
 class StreamSOAPCodec
          A stream SOAP codec.
 class SwACodec
          Codec that uses MIME/multipart as the base format.
 class XMLHTTPBindingCodec
          XML (infoset) over HTTP binding Codec.
 

Fields in com.sun.xml.ws.encoding declared as Codec
protected  Codec MimeCodec.rootCodec
           
 

Constructors in com.sun.xml.ws.encoding with parameters of type Codec
SwACodec(SOAPVersion version, WSBinding binding, Codec rootCodec)
           
 

Uses of Codec in com.sun.xml.ws.encoding.xml
 

Classes in com.sun.xml.ws.encoding.xml that implement Codec
 class XMLCodec
           
 

Methods in com.sun.xml.ws.encoding.xml that return Codec
 Codec XMLCodec.copy()
           
 

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

Methods in com.sun.xml.ws.server that return Codec
 Codec WSEndpointImpl.createCodec()
           
 

Uses of Codec in com.sun.xml.ws.transport.http
 

Methods in com.sun.xml.ws.transport.http with parameters of type Codec
protected  void HttpAdapter.AsyncTransport.encodePacket(WSHTTPConnection con, Packet packet, Codec codec)
           
 

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

Constructors in com.sun.xml.ws.transport.http.client with parameters of type Codec
HttpTransportPipe(Codec codec, WSBinding binding)
           
 

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

Constructors in com.sun.xml.ws.transport.local with parameters of type Codec
LocalAsyncTransportTube(URI baseURI, WSEndpoint endpoint, Codec codec)
           
LocalTransportTube(URI baseURI, WSEndpoint endpoint, Codec codec)