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.api.message.saaj com.sun.xml.ws.client JAX-WS 2.0.1 Client Runtimecom.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.jaxb Messageimplementation 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 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(SOAPVersion soapVersion, jakarta.xml.bind.Marshaller m, Object o)Deprecated.UseHeaders.create(BindingContext, Object)instead.static HeaderHeaders. create(SOAPVersion soapVersion, jakarta.xml.bind.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(jakarta.xml.bind.JAXBContext context, Object o)Creates aHeaderbacked a by a JAXB bean.static HeaderHeaders. create(jakarta.xml.soap.SOAPHeaderElement header)Creates a newHeaderbacked by a SAAJ object.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(org.glassfish.jaxb.runtime.api.Bridge bridge, Object jaxbObject)Deprecated.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.api.message.saaj
Methods in com.sun.xml.ws.api.message.saaj that return Header Modifier and Type Method Description HeaderSAAJMessageHeaders. get(String nsUri, String localName, boolean markAsUnderstood)HeaderSAAJMessageHeaders. get(QName name, boolean markAsUnderstood)HeaderSAAJMessageHeaders. remove(String nsUri, String localName)HeaderSAAJMessageHeaders. remove(QName name)Methods in com.sun.xml.ws.api.message.saaj that return types with arguments of type Header Modifier and Type Method Description List<Header>SAAJMessageHeaders. asList()Iterator<Header>SAAJMessageHeaders. getHeaders()Iterator<Header>SAAJMessageHeaders. getHeaders(String nsUri, boolean markAsUnderstood)Iterator<Header>SAAJMessageHeaders. getHeaders(String nsUri, String localName, boolean markAsUnderstood)Iterator<Header>SAAJMessageHeaders. getHeaders(QName headerName, boolean markAsUnderstood)Methods in com.sun.xml.ws.api.message.saaj with parameters of type Header Modifier and Type Method Description booleanSAAJMessageHeaders. add(Header header)booleanSAAJMessageHeaders. addOrReplace(Header header)booleanSAAJMessageHeaders. isUnderstood(Header header)voidSAAJMessageHeaders. replace(Header old, Header header)voidSAAJMessageHeaders. 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 Modifier and Type Method Description List<Header>Stub. getInboundHeaders()Methods in com.sun.xml.ws.client with parameters of type Header Modifier and Type Method Description voidStub. setOutboundHeaders(Header... headers)Method parameters in com.sun.xml.ws.client with type arguments of type Header Modifier and Type Method Description voidStub. 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 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 that implement Header Modifier and Type Class Description classAbstractHeaderImplPartial default implementation ofHeader.classDOMHeader<N extends Element>Headerimplementation for a DOM.classFaultDetailHeaderclassProblemActionHeaderHeaderthat represents <wsa:ProblemAction>classRelatesToHeaderWS-Addressing <RelatesTo> header.classStringHeaderHeaderthat 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 Modifier and Type Class Description classJAXBHeaderHeaderwhose 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 Modifier and Type Class Description classSAAJHeaderHeaderforSOAPHeaderElement. -
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, 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 Modifier and Type Method Description protected HeaderWsrmProtocolHandler. createHeader(Object jaxbHeaderContent)abstract HeaderWsrmProtocolHandler. createSequenceFaultElementHeader(QName subcode, jakarta.xml.soap.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 Constructor Description JAXBDataImpl(Header header)JAXBDataImpl(Header header, boolean contentOnly, NamespaceContextEx nsContext, jakarta.xml.bind.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 Modifier and Type Method Description HeaderSignedMessageHeader. getSignedHeader()Constructors in com.sun.xml.ws.security.opt.impl.dsig with parameters of type Header Constructor Description 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 Modifier and Type Class Description classGenericSecuredHeader -
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 Modifier and Type Class Description classHeaderHeader represents any Header element that has its contents signed.classHeaderWrapperclassSecurityHeaderWrapperConstructors in com.sun.xml.ws.security.opt.impl.message with parameters of type Header Constructor Description 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 Modifier and Type Method Description 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 Modifier and Type Field Description protected HeaderCoordinationContextBuilder. coordinationHeaderMethods in com.sun.xml.ws.tx.coord.common with parameters of type Header Modifier and Type Method Description protected abstract CoordinationContextIFCoordinationContextBuilder. _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 Modifier and Type Method Description protected CoordinationContextIFCoordinationContextBuilderImpl. _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 Modifier and Type Method Description protected CoordinationContextIFCoordinationContextBuilderImpl. _fromHeader(Header header)
-