Searched refs:AttachmentPart (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPMessage.java67 * object may contain zero or more <code>AttachmentPart</code> objects, each
69 * interface provides methods for creating <code>AttachmentPart</code>
77 * <code>AttachmentPart</code> object.
102 * @see AttachmentPart
188 * Removes all <code>AttachmentPart</code> objects that have been added
199 * @return the number of <code>AttachmentPart</code> objects that are
205 * Retrieves all the <code>AttachmentPart</code> objects that are part of
213 * Retrieves all the <code>AttachmentPart</code> objects that have header
226 * Removes all the <code>AttachmentPart</code> objects that have header
239 * Returns an <code>AttachmentPart</cod
276 addAttachmentPart(AttachmentPart AttachmentPart) argument
[all...]
H A DAttachmentPart.java36 * object may contain zero, one, or many <code>AttachmentPart</code> objects.
37 * Each <code>AttachmentPart</code> object consists of two parts,
42 * An <code>AttachmentPart</code> object must conform to certain standards.
51 * <code>AttachmentPart</code> object and MUST conform to [RFC2045].
57 * <code>AttachmentPart</code> object, sets the header shown in
67 * AttachmentPart</code> object. The content may be anything from a
71 * An <code>AttachmentPart</code> object is created with the method
73 * the <code>AttachmentPart</code> object is added to the message
79 * <code>String</code>, creates an instance of <code>AttachmentPart</code>,
80 * sets the <code>AttachmentPart</cod
119 public abstract class AttachmentPart { class
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DDataHandlerAttachment.java33 import javax.xml.soap.AttachmentPart;
103 AttachmentPart part = saaj.createAttachmentPart();
H A DByteArrayAttachment.java36 import javax.xml.soap.AttachmentPart;
104 AttachmentPart part = saaj.createAttachmentPart();
H A DJAXBAttachment.java38 import javax.xml.soap.AttachmentPart;
110 AttachmentPart part = saaj.createAttachmentPart();
H A DAbstractMessageImpl.java36 import javax.xml.soap.AttachmentPart;
188 AttachmentPart part = msg.createAttachmentPart();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimePullMultipart.java34 import javax.xml.soap.AttachmentPart;
110 AttachmentPart attach = new AttachmentPartImpl(part);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DStreamAttachment.java37 import javax.xml.soap.AttachmentPart;
103 AttachmentPart part = saaj.createAttachmentPart();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.java54 import javax.xml.soap.AttachmentPart;
279 AttachmentPart part = msg.createAttachmentPart();
512 final AttachmentPart ap;
514 public SAAJAttachment(AttachmentPart part) {
591 AttachmentPart asAttachmentPart(){
652 AttachmentPart ap = (AttachmentPart) attIter.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMessageImpl.java800 public void addAttachmentPart(AttachmentPart attachment) {
919 public AttachmentPart createAttachmentPart() {
923 public AttachmentPart getAttachment(SOAPElement element)
963 private AttachmentPart getAttachmentPart(String uri) throws SOAPException {
964 AttachmentPart _part;
974 _part = (i == null) ? null : (AttachmentPart)i.next();
981 _part = (i == null) ? null : (AttachmentPart)i.next();
989 AttachmentPart p = (AttachmentPart)j.next();
H A DAttachmentPartImpl.java59 public class AttachmentPartImpl extends AttachmentPart {

Completed in 106 milliseconds