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.message Message and related abstractions that represent a SOAP message. 
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.assembler.dev   
com.sun.xml.ws.binding   
com.sun.xml.ws.encoding   
com.sun.xml.ws.encoding.fastinfoset   
com.sun.xml.ws.encoding.xml   
com.sun.xml.ws.metro.api.config.management   
com.sun.xml.ws.security.encoding   
com.sun.xml.ws.server JAX-WS 2.0.1 Server Runtime 
com.sun.xml.ws.transport.http.client   
com.sun.xml.ws.transport.tcp.client   
com.sun.xml.ws.transport.tcp.encoding   
com.sun.xml.ws.transport.tcp.server   
com.sun.xml.ws.transport.tcp.util   
 

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

Fields in com.sun.xml.ws.api.message declared as Codec
 Codec Packet.codec
           
 

Methods in com.sun.xml.ws.api.message that return Codec
 Codec Packet.getCodec()
           
 

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.
static Codec Codecs.createXMLCodec(WSFeatureList feature)
          This creates a full Codec for XML 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.
 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.
 

Methods in com.sun.xml.ws.api.pipe with parameters of type Codec
 void ClientTubeAssemblerContext.setCodec(Codec codec)
          Interception point to change Codec during Tubeline assembly.
 void ServerTubeAssemblerContext.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, WSBindingProvider bindingProvider, WSBinding binding, Container container, Codec codec, SEIModel seiModel, Class sei)
          This constructor should be used only by JAX-WS Runtime and is not meant for external consumption.
ClientTubeAssemblerContext(EndpointAddress address, WSDLPort wsdlModel, WSService rootOwner, WSBinding binding, Container container, Codec codec)
          Deprecated. Use ClientTubeAssemblerContext.ClientTubeAssemblerContext(EndpointAddress, WSDLPort, WSService, WSBindingProvider, WSBinding, Container, Codec, SEIModel, Class)
ClientTubeAssemblerContext(EndpointAddress address, WSDLPort wsdlModel, WSService rootOwner, WSBinding binding, Container container, Codec codec, SEIModel seiModel, Class sei)
          Deprecated. Use ClientTubeAssemblerContext.ClientTubeAssemblerContext(EndpointAddress, WSDLPort, WSService, WSBindingProvider, WSBinding, Container, Codec, SEIModel, Class)
 

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.assembler.dev
 

Methods in com.sun.xml.ws.assembler.dev that return Codec
 Codec ClientTubelineAssemblyContext.getCodec()
          Gets the Codec that is set by ClientTubelineAssemblyContext.setCodec(com.sun.xml.ws.api.pipe.Codec) or the default codec based on the binding.
 Codec ServerTubelineAssemblyContext.getCodec()
          Gets the Codec that is set by ServerTubelineAssemblyContext.setCodec(com.sun.xml.ws.api.pipe.Codec) or the default codec based on the binding.
 

Methods in com.sun.xml.ws.assembler.dev with parameters of type Codec
 void ClientTubelineAssemblyContext.setCodec(Codec codec)
          Interception point to change Codec during Tubeline assembly.
 void ServerTubelineAssemblyContext.setCodec(Codec codec)
          Interception point to change Codec during Tubeline assembly.
 

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
 class MtomCodec
          Mtom message Codec.
 class SOAPBindingCodec
          SOAP binding Codec that can handle MTOM, SwA, and SOAP messages encoded using XML or Fast Infoset.
 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.
 

Methods in com.sun.xml.ws.encoding that return Codec
protected  Codec XMLHTTPBindingCodec.getMimeRootCodec(Packet p)
           
 

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

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

Classes in com.sun.xml.ws.encoding.fastinfoset that implement Codec
 class FastInfosetCodec
          A codec for encoding/decoding XML infosets to/from fast infoset documents.
 class FastInfosetStreamSOAPCodec
          A stream SOAP codec for handling SOAP message infosets to fast infoset documents.
 

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

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.metro.api.config.management
 

Methods in com.sun.xml.ws.metro.api.config.management that return Codec
 Codec ManagedEndpoint.createCodec()
           
 

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

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

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

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

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

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.tcp.client
 

Fields in com.sun.xml.ws.transport.tcp.client declared as Codec
protected  Codec TCPTransportPipe.defaultCodec
           
 

Methods in com.sun.xml.ws.transport.tcp.client with parameters of type Codec
 ChannelContext WSConnectionManager.openChannel(WSTCPURI uri, WSService wsService, WSBinding wsBinding, Codec defaultCodec)
           
 

Constructors in com.sun.xml.ws.transport.tcp.client with parameters of type Codec
TCPTransportPipe(WSService wsService, WSBinding wsBinding, Codec defaultCodec, int customTCPPort)
           
 

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

Classes in com.sun.xml.ws.transport.tcp.encoding that implement Codec
 class WSTCPFastInfosetStreamCodec
           
 class WSTCPFastInfosetStreamSOAP11Codec
           
 class WSTCPFastInfosetStreamSOAP12Codec
           
 

Methods in com.sun.xml.ws.transport.tcp.encoding that return Codec
 Codec WSTCPFastInfosetStreamSOAP11Codec.copy()
           
 Codec WSTCPFastInfosetStreamSOAP12Codec.copy()
           
 

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

Methods in com.sun.xml.ws.transport.tcp.server that return Codec
protected  Codec TCPAdapter.TCPToolkit.getCodec(ChannelContext context)
           
 

Uses of Codec in com.sun.xml.ws.transport.tcp.util
 

Methods in com.sun.xml.ws.transport.tcp.util that return Codec
 Codec ChannelContext.getCodec()
          Return message Codec, which is used for encoding/decoding messages on this virtual channel
 

Methods in com.sun.xml.ws.transport.tcp.util with parameters of type Codec
static void ChannelContext.configureCodec(ChannelContext channelContext, SOAPVersion soapVersion, Codec defaultCodec)
          Configure Codec according to channel settings
 



Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.