Uses of Class
javax.xml.soap.AttachmentPart
-
Packages that use AttachmentPart 软件包 描述 javax.xml.soap 提供用于创建和构建SOAP消息的API。 -
-
Uses of AttachmentPart in javax.xml.soap
Methods in javax.xml.soap that return AttachmentPart Modifier and Type 方法 描述 abstract AttachmentPart
SOAPMessage. createAttachmentPart()
创建一个新的空的AttachmentPart
对象。AttachmentPart
SOAPMessage. createAttachmentPart(Object content, String contentType)
创建一个AttachmentPart
对象,并使用指定的内容类型的指定数据填充对象。AttachmentPart
SOAPMessage. createAttachmentPart(DataHandler dataHandler)
创建一个AttachmentPart
对象,并使用给定的DataHandler
对象进行填充。abstract AttachmentPart
SOAPMessage. getAttachment(SOAPElement element)
返回一个AttachmentPart
对象,该对象与此SOAPElement
或null
引用的附件相关联,如果不存在此类附件。Methods in javax.xml.soap that return types with arguments of type AttachmentPart Modifier and Type 方法 描述 abstract Iterator<AttachmentPart>
SOAPMessage. getAttachments()
检索所有AttachmentPart
对象是这部分SOAPMessage
对象。abstract Iterator<AttachmentPart>
SOAPMessage. getAttachments(MimeHeaders headers)
检索具有与指定标题匹配的标题条目的所有AttachmentPart
对象。Methods in javax.xml.soap with parameters of type AttachmentPart Modifier and Type 方法 描述 abstract void
SOAPMessage. addAttachmentPart(AttachmentPart attachmentPart)
将给定的AttachmentPart
对象添加到此SOAPMessage
对象。
-