Uses of Class
jakarta.xml.soap.AttachmentPart
-
Packages that use AttachmentPart Package Description jakarta.xml.soap Provides the API for creating and building SOAP messages. -
-
Uses of AttachmentPart in jakarta.xml.soap
Methods in jakarta.xml.soap that return AttachmentPart Modifier and Type Method Description abstract AttachmentPart
SOAPMessage. createAttachmentPart()
Creates a new emptyAttachmentPart
object.AttachmentPart
SOAPMessage. createAttachmentPart(DataHandler dataHandler)
Creates anAttachmentPart
object and populates it using the givenDataHandler
object.AttachmentPart
SOAPMessage. createAttachmentPart(Object content, String contentType)
Creates anAttachmentPart
object and populates it with the specified data of the specified content type.abstract AttachmentPart
SOAPMessage. getAttachment(SOAPElement element)
Returns anAttachmentPart
object that is associated with an attachment that is referenced by thisSOAPElement
ornull
if no such attachment exists.Methods in jakarta.xml.soap that return types with arguments of type AttachmentPart Modifier and Type Method Description abstract Iterator<AttachmentPart>
SOAPMessage. getAttachments()
Retrieves all theAttachmentPart
objects that are part of thisSOAPMessage
object.abstract Iterator<AttachmentPart>
SOAPMessage. getAttachments(MimeHeaders headers)
Retrieves all theAttachmentPart
objects that have header entries that match the specified headers.Methods in jakarta.xml.soap with parameters of type AttachmentPart Modifier and Type Method Description abstract void
SOAPMessage. addAttachmentPart(AttachmentPart attachmentPart)
Adds the givenAttachmentPart
object to thisSOAPMessage
object.
-