Uses of Interface
com.sun.xml.ws.api.message.Header
-
Packages that use Header Package Description com.sun.xml.ws.api.addressing com.sun.xml.ws.api.message Messageand related abstractions that represent a SOAP message.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 Messageimplementations.com.sun.xml.ws.message.stream -
-
Uses of Header in com.sun.xml.ws.api.addressing
Methods in com.sun.xml.ws.api.addressing that return Header Modifier and Type Method Description HeaderWSEndpointReference. createHeader(QName rootTagName)Returns aHeaderthat wraps thisWSEndpointReference. -
Uses of Header in com.sun.xml.ws.api.message
Methods in com.sun.xml.ws.api.message that return Header Modifier and Type Method Description static HeaderHeaders. create(com.sun.xml.bind.api.Bridge bridge, Object jaxbObject)Deprecated.static HeaderHeaders. create(SOAPVersion soapVersion, Marshaller m, Object o)Deprecated.UseHeaders.create(BindingContext, Object)instead.static HeaderHeaders. create(SOAPVersion soapVersion, Marshaller m, QName tagName, Object o)Creates aHeaderbacked a by a JAXB bean, with the given tag name.static HeaderHeaders. create(SOAPVersion soapVersion, XMLStreamReader reader)Creates a newHeaderthat reads fromXMLStreamReader.static HeaderHeaders. create(SOAPVersion soapVersion, Element node)Deprecated.static HeaderHeaders. create(BindingContext context, Object o)static HeaderHeaders. create(XMLBridge bridge, Object jaxbObject)static HeaderHeaders. create(JAXBContext context, Object o)Creates aHeaderbacked a by a JAXB bean.static HeaderHeaders. create(QName name, String value)Creates a newHeaderthat that has a single text value in it (IOW, of the form <foo>text</foo>.)static HeaderHeaders. create(SOAPHeaderElement header)Creates a newHeaderbacked by a SAAJ object.static HeaderHeaders. create(Element node)static HeaderHeaders. createMustUnderstand(SOAPVersion soapVersion, QName name, String value)Creates a newHeaderthat that has a single text value in it (IOW, of the form <foo>text</foo>.)HeaderHeaderList. get(int index)Gets theHeaderat the specified index.HeaderHeaderList. get(String nsUri, String localName)Deprecated.HeaderHeaderList. get(String nsUri, String localName, boolean markAsUnderstood)Gets the firstHeaderof the specified name.HeaderHeaderList. get(QName name)Deprecated.HeaderHeaderList. get(QName name, boolean markAsUnderstood)Gets the firstHeaderof the specified name.HeaderMessageHeaders. get(String nsUri, String localName, boolean markAsUnderstood)HeaderMessageHeaders. get(QName name, boolean markAsUnderstood)static HeaderAddressingUtils. getFirstHeader(MessageHeaders headers, QName name, boolean markUnderstood, SOAPVersion sv)HeaderHeaderList. remove(int index)Removes the firstHeaderof the specified name.HeaderHeaderList. remove(Header h)HeaderHeaderList. remove(String nsUri, String localName)Removes the firstHeaderof the specified name.HeaderHeaderList. remove(QName name)Removes the firstHeaderof the specified name.HeaderMessageHeaders. remove(String nsUri, String localName)HeaderMessageHeaders. remove(QName name)protected HeaderHeaderList. removeInternal(int index)Methods in com.sun.xml.ws.api.message that return types with arguments of type Header Modifier and Type Method Description List<Header>HeaderList. asList()List<Header>MessageHeaders. asList()ReturnsHeaderinstances in aList.Iterator<Header>HeaderList. getHeaders()Iterator<Header>HeaderList. getHeaders(String nsUri)Deprecated.Iterator<Header>HeaderList. getHeaders(String nsUri, boolean markAsUnderstood)Gets an iteration of headersHeaderin the specified namespace, including duplicates (if any.)Iterator<Header>HeaderList. getHeaders(String nsUri, String localName)Deprecated.Iterator<Header>HeaderList. getHeaders(String nsUri, String localName, boolean markAsUnderstood)Gets all theHeaders of the specified name, including duplicates (if any.)Iterator<Header>HeaderList. getHeaders(QName headerName, boolean markAsUnderstood)Iterator<Header>MessageHeaders. getHeaders()Iterator<Header>MessageHeaders. getHeaders(String nsUri, boolean markAsUnderstood)Get all headers in specified namespaceIterator<Header>MessageHeaders. getHeaders(String nsUri, String localName, boolean markAsUnderstood)Iterator<Header>MessageHeaders. getHeaders(QName headerName, boolean markAsUnderstood)Methods in com.sun.xml.ws.api.message with parameters of type Header Modifier and Type Method Description booleanHeaderList. add(Header header)Adds a newHeader.booleanMessageHeaders. add(Header header)voidHeaderList. addAll(Header... headers)Deprecated.throws UnsupportedOperationException from some HeaderList implementations - better iterate over items one by oneprotected voidHeaderList. addInternal(int index, Header header)booleanHeaderList. addOrReplace(Header header)booleanMessageHeaders. addOrReplace(Header header)booleanHeaderList. isUnderstood(Header header)booleanMessageHeaders. isUnderstood(Header header)True if the header has been explicitly marked understood, false otherwiseHeaderHeaderList. remove(Header h)voidHeaderList. replace(Header old, Header header)voidMessageHeaders. replace(Header old, Header header)voidHeaderList. understood(Header header)Deprecated.By the definition ofArrayList, this operation requires O(n) search of the array, and thus inherently inefficient.voidMessageHeaders. understood(Header header) -
Uses of Header in com.sun.xml.ws.developer
Methods in com.sun.xml.ws.developer that return types with arguments of type Header Modifier and Type Method Description 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 Modifier and Type Method Description EPRRecipeEPRRecipe. addReferenceParameter(Header h)Adds a new reference parameter.EPRRecipeEPRRecipe. addReferenceParameters(Header... headers)Adds all the headers as reference parameters.voidWSBindingProvider. setOutboundHeaders(Header... headers)Sets the out-bound headers to be added to messages sent from thisBindingProvider.Method parameters in com.sun.xml.ws.developer with type arguments of type Header Modifier and Type Method Description EPRRecipeEPRRecipe. addReferenceParameters(Iterable<? extends Header> headers)Adds all the headers as reference parameters.voidWSBindingProvider. setOutboundHeaders(List<Header> headers)Sets the out-bound headers to be added to messages sent from thisBindingProvider. -
Uses of Header in com.sun.xml.ws.message
Classes in com.sun.xml.ws.message with annotations of type with type parameters of type that implement declared as with annotations of type with type parameters of type with annotations of type with annotations of type with type parameters of type that return that return types with arguments of type with parameters of type with type arguments of type that throw with annotations of type with annotations of type with parameters of type with type arguments of type that throw Header Modifier and Type Class Description classcom.sun.xml.ws.message.AbstractHeaderImplPartial default implementation ofHeader. -
Uses of Header in com.sun.xml.ws.message.stream
Classes in com.sun.xml.ws.message.stream that implement Header Modifier and Type Class Description classOutboundStreamHeaderUsed to represent outbound header created fromXMLStreamBuffer.classStreamHeaderHeaderwhose physical data representation is an XMLStreamBuffer.classStreamHeader11StreamHeaderfor SOAP 1.1.classStreamHeader12StreamHeaderfor SOAP 1.2.Methods in com.sun.xml.ws.message.stream that return Header Modifier and Type Method Description HeaderStreamMessage.StreamHeaderDecoder. decodeHeader(XMLStreamReader reader, com.sun.xml.stream.buffer.XMLStreamBuffer mark)
-