Uses of Class
com.sun.xml.ws.api.message.HeaderList

Packages that use HeaderList
com.sun.xml.ws.api.addressing   
com.sun.xml.ws.api.message Message and related abstractions that represent a SOAP message. 
com.sun.xml.ws.encoding.xml   
com.sun.xml.ws.message Message implementations. 
com.sun.xml.ws.message.jaxb Message implementation for JAXB. 
com.sun.xml.ws.message.saaj   
com.sun.xml.ws.message.source   
com.sun.xml.ws.message.stream   
com.sun.xml.ws.protocol.soap   
 

Uses of HeaderList in com.sun.xml.ws.api.addressing
 

Methods in com.sun.xml.ws.api.addressing with parameters of type HeaderList
 void WSEndpointReference.addReferenceParameters(HeaderList outbound)
          Copies all the reference parameters in this EPR as headers to the given HeaderList.
 

Uses of HeaderList in com.sun.xml.ws.api.message
 

Methods in com.sun.xml.ws.api.message that return HeaderList
static HeaderList HeaderList.copy(HeaderList original)
          Creates a copy.
(package private)  HeaderList Packet.getHeaderList()
          Deprecated. This method is for exposing header list through PropertySet.get(Object), for user applications, and should never be invoked directly from within the JAX-WS RI.
abstract  HeaderList Message.getHeaders()
          Gets all the headers of this message.
 

Methods in com.sun.xml.ws.api.message with parameters of type HeaderList
static HeaderList HeaderList.copy(HeaderList original)
          Creates a copy.
 

Constructors in com.sun.xml.ws.api.message with parameters of type HeaderList
HeaderList(HeaderList that)
          Copy constructor.
 

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

Methods in com.sun.xml.ws.encoding.xml that return HeaderList
 HeaderList XMLMessage.XMLMultiPart.getHeaders()
           
 HeaderList XMLMessage.UnknownContent.getHeaders()
           
 

Uses of HeaderList in com.sun.xml.ws.message
 

Methods in com.sun.xml.ws.message that return HeaderList
 HeaderList DOMMessage.getHeaders()
           
 HeaderList EmptyMessageImpl.getHeaders()
           
 

Constructors in com.sun.xml.ws.message with parameters of type HeaderList
DOMMessage(SOAPVersion ver, HeaderList headers, Element payload)
           
EmptyMessageImpl(HeaderList headers, AttachmentSet attachmentSet, SOAPVersion version)
           
 

Uses of HeaderList in com.sun.xml.ws.message.jaxb
 

Methods in com.sun.xml.ws.message.jaxb that return HeaderList
 HeaderList JAXBMessage.getHeaders()
           
 

Uses of HeaderList in com.sun.xml.ws.message.saaj
 

Methods in com.sun.xml.ws.message.saaj that return HeaderList
 HeaderList SAAJMessage.getHeaders()
           
 

Uses of HeaderList in com.sun.xml.ws.message.source
 

Methods in com.sun.xml.ws.message.source that return HeaderList
 HeaderList ProtocolSourceMessage.getHeaders()
           
 

Constructors in com.sun.xml.ws.message.source with parameters of type HeaderList
PayloadSourceMessage(HeaderList headers, Source payload, AttachmentSet attSet, SOAPVersion soapVersion)
           
 

Uses of HeaderList in com.sun.xml.ws.message.stream
 

Methods in com.sun.xml.ws.message.stream that return HeaderList
 HeaderList PayloadStreamReaderMessage.getHeaders()
           
 HeaderList StreamMessage.getHeaders()
           
 

Constructors in com.sun.xml.ws.message.stream with parameters of type HeaderList
PayloadStreamReaderMessage(HeaderList headers, javax.xml.stream.XMLStreamReader reader, AttachmentSet attSet, SOAPVersion soapVersion)
           
StreamMessage(HeaderList headers, AttachmentSet attachmentSet, javax.xml.stream.XMLStreamReader reader, SOAPVersion soapVersion)
          Creates a StreamMessage from a XMLStreamReader that points at the start element of the payload, and headers.
StreamMessage(TagInfoset envelopeTag, TagInfoset headerTag, AttachmentSet attachmentSet, HeaderList headers, TagInfoset bodyTag, javax.xml.stream.XMLStreamReader reader, SOAPVersion soapVersion)
          Creates a StreamMessage from a XMLStreamReader and the complete infoset of the SOAP envelope.
 

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

Methods in com.sun.xml.ws.protocol.soap with parameters of type HeaderList
protected  Set<QName> MUTube.getMisUnderstoodHeaders(HeaderList headers, Set<String> roles, Set<QName> knownHeaders)