Uses of Class
jakarta.xml.soap.MimeHeader
Packages that use MimeHeader
Package
Description
Provides the API for creating and building SOAP messages.
-
Uses of MimeHeader in com.sun.xml.messaging.saaj.soap
Methods in com.sun.xml.messaging.saaj.soap that return types with arguments of type MimeHeaderModifier and TypeMethodDescriptionAttachmentPartImpl.getAllMimeHeaders()SOAPPartImpl.getAllMimeHeaders()AttachmentPartImpl.getMatchingMimeHeaders(String[] names) SOAPPartImpl.getMatchingMimeHeaders(String[] names) AttachmentPartImpl.getNonMatchingMimeHeaders(String[] names) SOAPPartImpl.getNonMatchingMimeHeaders(String[] names) -
Uses of MimeHeader in jakarta.xml.soap
Methods in jakarta.xml.soap that return types with arguments of type MimeHeaderModifier and TypeMethodDescriptionMimeHeaders.getAllHeaders()Returns all theMimeHeaders in thisMimeHeadersobject.abstract Iterator<MimeHeader> AttachmentPart.getAllMimeHeaders()Retrieves all the headers for thisAttachmentPartobject as an iterator over theMimeHeaderobjects.abstract Iterator<MimeHeader> SOAPPart.getAllMimeHeaders()Retrieves all the headers for thisSOAPPartobject as an iterator over theMimeHeaderobjects.MimeHeaders.getMatchingHeaders(String[] names) Returns all theMimeHeaderobjects whose name matches a name in the given array of names.abstract Iterator<MimeHeader> AttachmentPart.getMatchingMimeHeaders(String[] names) Retrieves allMimeHeaderobjects that match a name in the given array.abstract Iterator<MimeHeader> SOAPPart.getMatchingMimeHeaders(String[] names) Retrieves allMimeHeaderobjects that match a name in the given array.MimeHeaders.getNonMatchingHeaders(String[] names) Returns all of theMimeHeaderobjects whose name does not match a name in the given array of names.abstract Iterator<MimeHeader> AttachmentPart.getNonMatchingMimeHeaders(String[] names) Retrieves allMimeHeaderobjects whose name does not match a name in the given array.abstract Iterator<MimeHeader> SOAPPart.getNonMatchingMimeHeaders(String[] names) Retrieves allMimeHeaderobjects whose name does not match a name in the given array.