Uses of Interface
com.sun.xml.ws.api.message.Header

Packages that use Header
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.api.message.saaj   
com.sun.xml.ws.client JAX-WS 2.0.1 Client Runtime 
com.sun.xml.ws.developer JAX-WS RI vendor extension features that are available to the JAX-WS RI users. 
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.stream   
com.sun.xml.ws.rx.rm.runtime   
com.sun.xml.ws.security.opt.impl.crypto   
com.sun.xml.ws.security.opt.impl.dsig   
com.sun.xml.ws.security.opt.impl.incoming   
com.sun.xml.ws.security.opt.impl.message   
com.sun.xml.ws.tx.at.tube   
com.sun.xml.ws.tx.coord.common   
com.sun.xml.ws.tx.coord.v10   
com.sun.xml.ws.tx.coord.v11   
 

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

Methods in com.sun.xml.ws.api.addressing that return Header
 Header WSEndpointReference.createHeader(QName rootTagName)
          Returns a Header that wraps this WSEndpointReference.
 

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

Methods in com.sun.xml.ws.api.message that return Header
static Header Headers.create(BindingContext context, Object o)
           
static Header Headers.create(Bridge bridge, Object jaxbObject)
          Deprecated.  
static Header Headers.create(Element node)
          Creates a new Header backed by an Element.
static Header Headers.create(JAXBContext context, Object o)
          Creates a Header backed a by a JAXB bean.
static Header Headers.create(QName name, String value)
          Creates a new Header that that has a single text value in it (IOW, of the form <foo>text</foo>.)
static Header Headers.create(SOAPHeaderElement header)
          Creates a new Header backed by a SAAJ object.
static Header Headers.create(SOAPVersion soapVersion, Element node)
          Deprecated. Use Headers.create(Element)
static Header Headers.create(SOAPVersion soapVersion, Marshaller m, Object o)
          Deprecated. Use Headers.create(BindingContext, Object) instead.
static Header Headers.create(SOAPVersion soapVersion, Marshaller m, QName tagName, Object o)
          Creates a Header backed a by a JAXB bean, with the given tag name.
static Header Headers.create(SOAPVersion soapVersion, XMLStreamReader reader)
          Creates a new Header that reads from XMLStreamReader.
static Header Headers.create(XMLBridge bridge, Object jaxbObject)
           
static Header Headers.createMustUnderstand(SOAPVersion soapVersion, QName name, String value)
          Creates a new Header that that has a single text value in it (IOW, of the form <foo>text</foo>.)
 Header HeaderList.get(int index)
          Gets the Header at the specified index.
 Header HeaderList.get(QName name)
          Deprecated. Use HeaderList.get(QName)
 Header HeaderList.get(QName name, boolean markAsUnderstood)
          Gets the first Header of the specified name.
 Header MessageHeaders.get(QName name, boolean markAsUnderstood)
           
 Header HeaderList.get(String nsUri, String localName)
          Deprecated. Use HeaderList.get(String, String, boolean)
 Header HeaderList.get(String nsUri, String localName, boolean markAsUnderstood)
          Gets the first Header of the specified name.
 Header MessageHeaders.get(String nsUri, String localName, boolean markAsUnderstood)
           
static Header AddressingUtils.getFirstHeader(MessageHeaders headers, QName name, boolean markUnderstood, SOAPVersion sv)
           
 Header HeaderList.remove(Header h)
           
 Header HeaderList.remove(int index)
          Removes the first Header of the specified name.
 Header HeaderList.remove(QName name)
          Removes the first Header of the specified name.
 Header MessageHeaders.remove(QName name)
           
 Header HeaderList.remove(String nsUri, String localName)
          Removes the first Header of the specified name.
 Header MessageHeaders.remove(String nsUri, String localName)
           
protected  Header HeaderList.removeInternal(int index)
           
 

Methods in com.sun.xml.ws.api.message that return types with arguments of type Header
 List<Header> HeaderList.asList()
           
 List<Header> MessageHeaders.asList()
          Returns Header instances in a List.
 Iterator<Header> HeaderList.getHeaders()
           
 Iterator<Header> MessageHeaders.getHeaders()
           
 Iterator<Header> HeaderList.getHeaders(QName headerName, boolean markAsUnderstood)
           
 Iterator<Header> MessageHeaders.getHeaders(QName headerName, boolean markAsUnderstood)
           
 Iterator<Header> HeaderList.getHeaders(String nsUri)
          Deprecated. use HeaderList.getHeaders(String, boolean).
 Iterator<Header> HeaderList.getHeaders(String nsUri, boolean markAsUnderstood)
          Gets an iteration of headers Header in the specified namespace, including duplicates (if any.)
 Iterator<Header> MessageHeaders.getHeaders(String nsUri, boolean markAsUnderstood)
          Get all headers in specified namespace
 Iterator<Header> HeaderList.getHeaders(String nsUri, String localName)
          Deprecated. Use HeaderList.getHeaders(String, String, boolean)
 Iterator<Header> HeaderList.getHeaders(String nsUri, String localName, boolean markAsUnderstood)
          Gets all the Headers of the specified name, including duplicates (if any.)
 Iterator<Header> MessageHeaders.getHeaders(String nsUri, String localName, boolean markAsUnderstood)
           
 

Methods in com.sun.xml.ws.api.message with parameters of type Header
 boolean HeaderList.add(Header header)
          Adds a new Header.
 boolean MessageHeaders.add(Header header)
           
 void HeaderList.addAll(Header... headers)
          Deprecated. throws UnsupportedOperationException from some HeaderList implementations - better iterate over items one by one
protected  void HeaderList.addInternal(int index, Header header)
           
 boolean HeaderList.addOrReplace(Header header)
          Replaces an existing Header or adds a new Header.
 boolean MessageHeaders.addOrReplace(Header header)
          Replaces an existing Header or adds a new Header.
 boolean HeaderList.isUnderstood(Header header)
           
 boolean MessageHeaders.isUnderstood(Header header)
          True if the header has been explicitly marked understood, false otherwise
 Header HeaderList.remove(Header h)
           
 void HeaderList.replace(Header old, Header header)
           
 void MessageHeaders.replace(Header old, Header header)
           
 void HeaderList.understood(Header header)
          Deprecated. By the definition of ArrayList, this operation requires O(n) search of the array, and thus inherently inefficient. Because of this, if you are developing a Pipe for a performance sensitive environment, do not use this method.
 void MessageHeaders.understood(Header header)
           
 

Uses of Header in com.sun.xml.ws.api.message.saaj
 

Methods in com.sun.xml.ws.api.message.saaj that return Header
 Header SAAJMessageHeaders.get(QName name, boolean markAsUnderstood)
           
 Header SAAJMessageHeaders.get(String nsUri, String localName, boolean markAsUnderstood)
           
 Header SAAJMessageHeaders.remove(QName name)
           
 Header SAAJMessageHeaders.remove(String nsUri, String localName)
           
 

Methods in com.sun.xml.ws.api.message.saaj that return types with arguments of type Header
 List<Header> SAAJMessageHeaders.asList()
           
 Iterator<Header> SAAJMessageHeaders.getHeaders()
           
 Iterator<Header> SAAJMessageHeaders.getHeaders(QName headerName, boolean markAsUnderstood)
           
 Iterator<Header> SAAJMessageHeaders.getHeaders(String nsUri, boolean markAsUnderstood)
           
 Iterator<Header> SAAJMessageHeaders.getHeaders(String nsUri, String localName, boolean markAsUnderstood)
           
 

Methods in com.sun.xml.ws.api.message.saaj with parameters of type Header
 boolean SAAJMessageHeaders.add(Header header)
           
 boolean SAAJMessageHeaders.addOrReplace(Header header)
           
 boolean SAAJMessageHeaders.isUnderstood(Header header)
           
 void SAAJMessageHeaders.replace(Header old, Header header)
           
 void SAAJMessageHeaders.understood(Header header)
           
 

Uses of Header in com.sun.xml.ws.client
 

Methods in com.sun.xml.ws.client that return types with arguments of type Header
 List<Header> Stub.getInboundHeaders()
           
 

Methods in com.sun.xml.ws.client with parameters of type Header
 void Stub.setOutboundHeaders(Header... headers)
           
 

Method parameters in com.sun.xml.ws.client with type arguments of type Header
 void Stub.setOutboundHeaders(List<Header> headers)
           
 

Uses of Header in com.sun.xml.ws.developer
 

Methods in com.sun.xml.ws.developer that return types with arguments of type Header
 List<Header> WSBindingProvider.getInboundHeaders()
           
 List<Header> EPRRecipe.getReferenceParameters()
          Gets all the reference parameters added so far.
 

Methods in com.sun.xml.ws.developer with parameters of type Header
 EPRRecipe EPRRecipe.addReferenceParameter(Header h)
          Adds a new reference parameter.
 EPRRecipe EPRRecipe.addReferenceParameters(Header... headers)
          Adds all the headers as reference parameters.
 void WSBindingProvider.setOutboundHeaders(Header... headers)
          Sets the out-bound headers to be added to messages sent from this BindingProvider.
 

Method parameters in com.sun.xml.ws.developer with type arguments of type Header
 EPRRecipe EPRRecipe.addReferenceParameters(Iterable<? extends Header> headers)
          Adds all the headers as reference parameters.
 void WSBindingProvider.setOutboundHeaders(List<Header> headers)
          Sets the out-bound headers to be added to messages sent from this BindingProvider.
 

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

Classes in com.sun.xml.ws.message that implement Header
 class AbstractHeaderImpl
          Partial default implementation of Header.
 class DOMHeader<N extends Element>
          Header implementation for a DOM.
 class FaultDetailHeader
           
 class ProblemActionHeader
          Header that represents <wsa:ProblemAction>
 class RelatesToHeader
          WS-Addressing <RelatesTo> header.
 class StringHeader
          Header that has a single text value in it (IOW, of the form <foo>text</foo>.)
 

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

Classes in com.sun.xml.ws.message.jaxb that implement Header
 class JAXBHeader
          Header whose physical data representation is a JAXB bean.
 

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

Classes in com.sun.xml.ws.message.saaj that implement Header
 class SAAJHeader
          Header for SOAPHeaderElement.
 

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

Classes in com.sun.xml.ws.message.stream that implement Header
 class OutboundStreamHeader
          Used to represent outbound header created from XMLStreamBuffer.
 class StreamHeader
          Header whose physical data representation is an XMLStreamBuffer.
 class StreamHeader11
          StreamHeader for SOAP 1.1.
 class StreamHeader12
          StreamHeader for SOAP 1.2.
 

Methods in com.sun.xml.ws.message.stream that return Header
 Header StreamMessage.StreamHeaderDecoder.decodeHeader(XMLStreamReader reader, XMLStreamBuffer mark)
           
 

Uses of Header in com.sun.xml.ws.rx.rm.runtime
 

Methods in com.sun.xml.ws.rx.rm.runtime that return Header
protected  Header WsrmProtocolHandler.createHeader(Object jaxbHeaderContent)
           
abstract  Header WsrmProtocolHandler.createSequenceFaultElementHeader(QName subcode, Detail detail)
           
 

Uses of Header in com.sun.xml.ws.security.opt.impl.crypto
 

Constructors in com.sun.xml.ws.security.opt.impl.crypto with parameters of type Header
JAXBDataImpl(Header header)
           
JAXBDataImpl(Header header, boolean contentOnly, NamespaceContextEx nsContext, JAXBContext jcc)
           
StreamHeaderData(Header header, boolean contentOnly, NamespaceContextEx ns)
          Creates a new instance of HeaderData
 

Uses of Header in com.sun.xml.ws.security.opt.impl.dsig
 

Methods in com.sun.xml.ws.security.opt.impl.dsig that return Header
 Header SignedMessageHeader.getSignedHeader()
           
 

Constructors in com.sun.xml.ws.security.opt.impl.dsig with parameters of type Header
SignedMessageHeader(Header header, String id, JAXBFilterProcessingContext context)
          Creates a new instance of SignedMessageHeader
 

Uses of Header in com.sun.xml.ws.security.opt.impl.incoming
 

Classes in com.sun.xml.ws.security.opt.impl.incoming that implement Header
 class GenericSecuredHeader
           
 

Uses of Header in com.sun.xml.ws.security.opt.impl.message
 

Classes in com.sun.xml.ws.security.opt.impl.message that implement Header
 class Header
          Header represents any Header element that has its contents signed.
 class HeaderWrapper
           
 class SecurityHeaderWrapper
           
 

Constructors in com.sun.xml.ws.security.opt.impl.message with parameters of type Header
Header(Header header, SecurityHeaderElement she)
           
 

Uses of Header in com.sun.xml.ws.tx.at.tube
 

Methods in com.sun.xml.ws.tx.at.tube that return types with arguments of type Header
 List<Header> WSATClient.doHandleRequest(TransactionalAttribute transactionalAttribute, Map<String,Object> map)
           
 List<Header> WSATClientHelper.doHandleRequest(TransactionalAttribute transactionalAttribute, Map<String,Object> map)
          For outbound case, if transaction exists, suspend and store it and attach CoordinationContext to SOAP Header For return of outbound case, if suspend transaction exists, resume it
 

Uses of Header in com.sun.xml.ws.tx.coord.common
 

Fields in com.sun.xml.ws.tx.coord.common declared as Header
protected  Header CoordinationContextBuilder.coordinationHeader
           
 

Methods in com.sun.xml.ws.tx.coord.common with parameters of type Header
protected abstract  CoordinationContextIF CoordinationContextBuilder._fromHeader(Header header)
           
 

Uses of Header in com.sun.xml.ws.tx.coord.v10
 

Methods in com.sun.xml.ws.tx.coord.v10 with parameters of type Header
protected  CoordinationContextIF CoordinationContextBuilderImpl._fromHeader(Header header)
           
 

Uses of Header in com.sun.xml.ws.tx.coord.v11
 

Methods in com.sun.xml.ws.tx.coord.v11 with parameters of type Header
protected  CoordinationContextIF CoordinationContextBuilderImpl._fromHeader(Header header)
           
 



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