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

WSTCPFastInfosetStreamSOAP11Codec

public class WSTCPFastInfosetStreamSOAP11Codec extends WSTCPFastInfosetStreamCodec
author
Alexey Stashok

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

        super(soapCodec, SOAPVersion.SOAP_11, readerRecycleListener, retainState, 
                (retainState) ? FastInfosetMIMETypes.STATEFUL_SOAP_11 : FastInfosetMIMETypes.SOAP_11);
    
private WSTCPFastInfosetStreamSOAP11Codec(WSTCPFastInfosetStreamSOAP11Codec that)

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

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

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

        if (soapAction == null || soapAction.length() == 0) {
            return _defaultContentType;
        } else {
            return new ContentTypeImpl(_defaultContentType.getContentType(), soapAction);
        }