FileDocCategorySizeDatePackage
WSTCPFastInfosetStreamSOAP12Codec.javaAPI DocExample3788Tue May 29 16:57:08 BST 2007com.sun.xml.ws.transport.tcp.encoding

WSTCPFastInfosetStreamSOAP12Codec

public class WSTCPFastInfosetStreamSOAP12Codec extends WSTCPFastInfosetStreamCodec
author
Alexey Stashok

Fields Summary
Constructors Summary
WSTCPFastInfosetStreamSOAP12Codec(com.sun.xml.ws.api.pipe.StreamSOAPCodec soapCodec, com.sun.xml.ws.transport.tcp.encoding.WSTCPFastInfosetStreamReaderRecyclable.RecycleAwareListener readerRecycleListener, boolean retainState)

        super(soapCodec, SOAPVersion.SOAP_12, readerRecycleListener, retainState,
                (retainState) ? FastInfosetMIMETypes.STATEFUL_SOAP_12 : FastInfosetMIMETypes.SOAP_12);
    
private WSTCPFastInfosetStreamSOAP12Codec(WSTCPFastInfosetStreamSOAP12Codec that)

        super(that);
    
Methods Summary
public com.sun.xml.ws.api.pipe.Codeccopy()

        return new WSTCPFastInfosetStreamSOAP12Codec(this);
    
protected final com.sun.xml.ws.message.stream.StreamHeadercreateHeader(javax.xml.stream.XMLStreamReader reader, com.sun.xml.stream.buffer.XMLStreamBuffer mark)

        return new StreamHeader12(reader, mark);
    
protected com.sun.xml.ws.api.pipe.ContentTypegetContentType(java.lang.String soapAction)

        if (soapAction == null) {
            return _defaultContentType;
        } else {
            return new ContentTypeImpl(
                    _defaultContentType.getContentType() + ";action=\""+soapAction+"\"");
        }