jaxws/src/java.xml.ws/share/classes/javax/xml/soap/SOAPMessage.java
author lana
Thu, 11 Aug 2016 15:47:07 +0000
changeset 40243 225732b21228
parent 31746 7573de6b8e46
child 45678 65fdff10664d
permissions -rw-r--r--
Added tag jdk-9+131 for changeset 2bf4f6d6a72f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
     1
/*
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
     2
 * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
     4
 *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    10
 *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    15
 * accompanied this code).
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    16
 *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    20
 *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    23
 * questions.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    24
 */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    25
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    26
package javax.xml.soap;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    27
import java.io.OutputStream;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    28
import java.io.IOException;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    29
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    30
import java.util.Iterator;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    31
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    32
import javax.activation.DataHandler;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    33
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    34
/**
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    35
 * The root class for all SOAP messages. As transmitted on the "wire", a SOAP
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    36
 * message is an XML document or a MIME message whose first body part is an
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    37
 * XML/SOAP document.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    38
 * <P>
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    39
 * A {@code SOAPMessage} object consists of a SOAP part and optionally
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    40
 * one or more attachment parts. The SOAP part for a {@code SOAPMessage}
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    41
 * object is a {@code SOAPPart} object, which contains information used
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    42
 * for message routing and identification, and which can contain
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    43
 * application-specific content. All data in the SOAP Part of a message must be
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    44
 * in XML format.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    45
 * <P>
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    46
 * A new {@code SOAPMessage} object contains the following by default:
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    47
 * <UL>
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    48
 *   <LI>A {@code SOAPPart} object
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    49
 *   <LI>A {@code SOAPEnvelope} object
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    50
 *   <LI>A {@code SOAPBody} object
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    51
 *   <LI>A {@code SOAPHeader} object
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    52
 * </UL>
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    53
 * The SOAP part of a message can be retrieved by calling the method {@code SOAPMessage.getSOAPPart()}.
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    54
 * The {@code SOAPEnvelope} object is retrieved from the {@code SOAPPart}
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    55
 * object, and the {@code SOAPEnvelope} object is used to retrieve the
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    56
 * {@code SOAPBody} and {@code SOAPHeader} objects.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    57
 *
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
    58
 * <pre>{@code
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    59
 *     SOAPPart sp = message.getSOAPPart();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    60
 *     SOAPEnvelope se = sp.getEnvelope();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    61
 *     SOAPBody sb = se.getBody();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    62
 *     SOAPHeader sh = se.getHeader();
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
    63
 * }</pre>
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    64
 *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    65
 * <P>
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    66
 * In addition to the mandatory {@code SOAPPart} object, a {@code SOAPMessage}
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    67
 * object may contain zero or more {@code AttachmentPart} objects, each
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    68
 * of which contains application-specific data. The {@code SOAPMessage}
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    69
 * interface provides methods for creating {@code AttachmentPart}
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    70
 * objects and also for adding them to a {@code SOAPMessage} object. A
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    71
 * party that has received a {@code SOAPMessage} object can examine its
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    72
 * contents by retrieving individual attachment parts.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    73
 * <P>
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    74
 * Unlike the rest of a SOAP message, an attachment is not required to be in
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    75
 * XML format and can therefore be anything from simple text to an image file.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    76
 * Consequently, any message content that is not in XML format must be in an
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    77
 * {@code AttachmentPart} object.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    78
 * <P>
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    79
 * A {@code MessageFactory} object may create {@code SOAPMessage}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    80
 * objects with behavior that is specialized to a particular implementation or
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    81
 * application of SAAJ. For instance, a {@code MessageFactory} object
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    82
 * may produce {@code SOAPMessage} objects that conform to a particular
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    83
 * Profile such as ebXML. In this case a {@code MessageFactory} object
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    84
 * might produce {@code SOAPMessage} objects that are initialized with
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    85
 * ebXML headers.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    86
 * <P>
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    87
 * In order to ensure backward source compatibility, methods that are added to
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    88
 * this class after version 1.1 of the SAAJ specification are all concrete
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    89
 * instead of abstract and they all have default implementations. Unless
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    90
 * otherwise noted in the JavaDocs for those methods the default
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
    91
 * implementations simply throw an {@code UnsupportedOperationException}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    92
 * and the SAAJ implementation code must override them with methods that
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    93
 * provide the specified behavior. Legacy client code does not have this
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    94
 * restriction, however, so long as there is no claim made that it conforms to
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    95
 * some later version of the specification than it was originally written for.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    96
 * A legacy class that extends the SOAPMessage class can be compiled and/or run
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    97
 * against succeeding versions of the SAAJ API without modification. If such a
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    98
 * class was correctly implemented then it will continue to behave correctly
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
    99
 * relative to the version of the specification against which it was written.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   100
 *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   101
 * @see MessageFactory
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   102
 * @see AttachmentPart
25840
c2002453eec3 8047724: @since tag cleanup in jaxws
henryjen
parents: 22679
diff changeset
   103
 * @since 1.6
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   104
 */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   105
public abstract class SOAPMessage {
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   106
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   107
    /**
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   108
     * Specifies the character type encoding for the SOAP Message. Valid values
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   109
     * include "utf-8" and "utf-16". See vendor documentation for additional
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   110
     * supported values. The default is "utf-8".
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   111
     *
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   112
     * @see SOAPMessage#setProperty(String, Object) SOAPMessage.setProperty
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   113
     * @since 1.6, SAAJ 1.2
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   114
     */
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   115
    public static final String CHARACTER_SET_ENCODING =
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   116
        "javax.xml.soap.character-set-encoding";
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   117
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   118
    /**
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   119
     * Specifies whether the SOAP Message will contain an XML declaration when
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   120
     * it is sent. The only valid values are "true" and "false". The default is
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   121
     * "false".
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   122
     *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   123
     * @see SOAPMessage#setProperty(String, Object) SOAPMessage.setProperty
25840
c2002453eec3 8047724: @since tag cleanup in jaxws
henryjen
parents: 22679
diff changeset
   124
     * @since 1.6, SAAJ 1.2
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   125
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   126
    public static final String WRITE_XML_DECLARATION =
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   127
        "javax.xml.soap.write-xml-declaration";
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   128
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   129
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   130
     * Sets the description of this {@code SOAPMessage} object's
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   131
     * content with the given description.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   132
     *
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   133
     * @param description a {@code String} describing the content of this
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   134
     *         message
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   135
     * @see #getContentDescription
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   136
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   137
    public abstract void setContentDescription(String description);
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   138
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   139
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   140
     * Retrieves a description of this {@code SOAPMessage} object's
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   141
     * content.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   142
     *
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   143
     * @return a {@code String} describing the content of this
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   144
     *         message or {@code null} if no description has been set
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   145
     * @see #setContentDescription
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   146
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   147
    public abstract String getContentDescription();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   148
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   149
    /**
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   150
     * Gets the SOAP part of this {@code SOAPMessage} object.
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   151
     * <p>
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   152
     * {@code SOAPMessage} object contains one or more attachments, the
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   153
     * SOAP Part must be the first MIME body part in the message.
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   154
     *
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   155
     * @return the {@code SOAPPart} object for this {@code SOAPMessage}
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   156
     * object
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   157
     */
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   158
    public abstract SOAPPart getSOAPPart();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   159
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   160
    /**
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   161
     * Gets the SOAP Body contained in this {@code SOAPMessage} object.
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   162
     *
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   163
     * @return the {@code SOAPBody} object contained by this {@code SOAPMessage}
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   164
     * object
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   165
     * @throws SOAPException if the SOAP Body does not exist or cannot be retrieved
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   166
     * @since 1.6, SAAJ 1.2
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   167
     */
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   168
    public SOAPBody getSOAPBody() throws SOAPException {
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   169
        throw new UnsupportedOperationException("getSOAPBody must be overridden by all subclasses of SOAPMessage");
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   170
    }
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   171
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   172
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   173
     * Gets the SOAP Header contained in this {@code SOAPMessage} object.
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   174
     *
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   175
     * @return the {@code SOAPHeader} object contained
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   176
     *         by this {@code SOAPMessage} object
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   177
     * @exception SOAPException
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   178
     *               if the SOAP Header does not exist or cannot be retrieved
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   179
     * @since 1.6, SAAJ 1.2
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   180
     */
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   181
    public SOAPHeader getSOAPHeader() throws SOAPException {
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   182
        throw new UnsupportedOperationException("getSOAPHeader must be overridden by all subclasses of SOAPMessage");
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   183
    }
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   184
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   185
    /**
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   186
     * Removes all {@code AttachmentPart} objects that have been added
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   187
     * to this {@code SOAPMessage} object.
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   188
     * <p>
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   189
     * This method does not touch the SOAP part.
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   190
     */
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   191
    public abstract void removeAllAttachments();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   192
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   193
    /**
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   194
     * Gets a count of the number of attachments in this message. This count
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   195
     * does not include the SOAP part.
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   196
     *
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   197
     * @return the number of {@code AttachmentPart} objects that are
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   198
     * part of this {@code SOAPMessage} object
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   199
     */
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   200
    public abstract int countAttachments();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   201
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   202
    /**
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   203
     * Retrieves all the {@code AttachmentPart} objects that are part of
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   204
     * this {@code SOAPMessage} object.
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   205
     *
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   206
     * @return an iterator over all the attachments in this message
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   207
     */
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   208
    public abstract Iterator getAttachments();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   209
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   210
    /**
31746
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   211
     * Retrieves all the {@code AttachmentPart} objects that have header
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   212
     * entries that match the specified headers. Note that a returned
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   213
     * attachment could have headers in addition to those specified.
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   214
     *
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   215
     * @param headers a {@code MimeHeaders} object containing the MIME
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   216
     *                headers for which to search
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   217
     * @return an iterator over all attachments that have a header that matches
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   218
     * one of the given headers
7573de6b8e46 8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents: 30005
diff changeset
   219
     */
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   220
    public abstract Iterator getAttachments(MimeHeaders headers);
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   221
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   222
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   223
     * Removes all the {@code AttachmentPart} objects that have header
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   224
     * entries that match the specified headers. Note that the removed
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   225
     * attachment could have headers in addition to those specified.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   226
     *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   227
     * @param headers
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   228
     *           a {@code MimeHeaders} object containing the MIME
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   229
     *           headers for which to search
25840
c2002453eec3 8047724: @since tag cleanup in jaxws
henryjen
parents: 22679
diff changeset
   230
     * @since 1.6, SAAJ 1.3
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   231
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   232
    public abstract void removeAttachments(MimeHeaders headers);
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   233
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   234
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   235
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   236
     * Returns an {@code AttachmentPart} object that is associated with an
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   237
     * attachment that is referenced by this {@code SOAPElement} or
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   238
     * {@code null} if no such attachment exists. References can be made
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   239
     * via an {@code href} attribute as described in
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   240
     * <a href="http://www.w3.org/TR/SOAP-attachments#SOAPReferenceToAttachements">SOAP Messages with Attachments</a>,
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   241
     * or via a single {@code Text} child node containing a URI as
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   242
     * described in the WS-I Attachments Profile 1.0 for elements of schema
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   243
     * type <a href="http://www.ws-i.org/Profiles/AttachmentsProfile-1.0-2004-08-24.html">ref:swaRef</a>.
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   244
     * These two mechanisms must be supported.
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   245
     * The support for references via {@code href} attribute also implies that
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   246
     * this method should also be supported on an element that is an
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   247
     * <i>xop:Include</i> element (
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   248
     * <a href="http://www.w3.org/2000/xp/Group/3/06/Attachments/XOP.html">XOP</a>).
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   249
     * other reference mechanisms may be supported by individual
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   250
     * implementations of this standard. Contact your vendor for details.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   251
     *
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   252
     * @param  element The {@code SOAPElement} containing the reference to an Attachment
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   253
     * @return the referenced {@code AttachmentPart} or null if no such
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   254
     *          {@code AttachmentPart} exists or no reference can be
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   255
     *          found in this {@code SOAPElement}.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   256
     * @throws SOAPException if there is an error in the attempt to access the
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   257
     *          attachment
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   258
     *
25840
c2002453eec3 8047724: @since tag cleanup in jaxws
henryjen
parents: 22679
diff changeset
   259
     * @since 1.6, SAAJ 1.3
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   260
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   261
    public abstract AttachmentPart getAttachment(SOAPElement element) throws SOAPException;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   262
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   263
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   264
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   265
     * Adds the given {@code AttachmentPart} object to this {@code SOAPMessage}
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   266
     * object. An {@code AttachmentPart} object must be created before
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   267
     * it can be added to a message.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   268
     *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   269
     * @param AttachmentPart
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   270
     *           an {@code AttachmentPart} object that is to become part
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   271
     *           of this {@code SOAPMessage} object
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   272
     * @exception IllegalArgumentException
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   273
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   274
    public abstract void addAttachmentPart(AttachmentPart AttachmentPart);
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   275
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   276
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   277
     * Creates a new empty {@code AttachmentPart} object. Note that the
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   278
     * method {@code addAttachmentPart} must be called with this new
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   279
     * {@code AttachmentPart} object as the parameter in order for it to
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   280
     * become an attachment to this {@code SOAPMessage} object.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   281
     *
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   282
     * @return a new {@code AttachmentPart} object that can be populated
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   283
     *         and added to this {@code SOAPMessage} object
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   284
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   285
    public abstract AttachmentPart createAttachmentPart();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   286
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   287
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   288
     * Creates an {@code AttachmentPart} object and populates it using
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   289
     * the given {@code DataHandler} object.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   290
     *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   291
     * @param dataHandler
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   292
     *           the {@code javax.activation.DataHandler} object that
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   293
     *           will generate the content for this {@code SOAPMessage}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   294
     *           object
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   295
     * @return a new {@code AttachmentPart} object that contains data
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   296
     *         generated by the given {@code DataHandler} object
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   297
     * @exception IllegalArgumentException
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   298
     *               if there was a problem with the specified {@code DataHandler}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   299
     *               object
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   300
     * @see javax.activation.DataHandler
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   301
     * @see javax.activation.DataContentHandler
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   302
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   303
    public AttachmentPart createAttachmentPart(DataHandler dataHandler) {
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   304
        AttachmentPart attachment = createAttachmentPart();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   305
        attachment.setDataHandler(dataHandler);
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   306
        return attachment;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   307
    }
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   308
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   309
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   310
     * Returns all the transport-specific MIME headers for this {@code SOAPMessage}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   311
     * object in a transport-independent fashion.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   312
     *
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   313
     * @return a {@code MimeHeaders} object containing the {@code MimeHeader}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   314
     *         objects
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   315
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   316
    public abstract MimeHeaders getMimeHeaders();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   317
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   318
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   319
     * Creates an {@code AttachmentPart} object and populates it with
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   320
     * the specified data of the specified content type. The type of the
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   321
     * {@code Object} should correspond to the value given for the
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   322
     * {@code Content-Type}.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   323
     *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   324
     * @param content
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   325
     *           an {@code Object} containing the content for the
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   326
     *           {@code AttachmentPart} object to be created
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   327
     * @param contentType
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   328
     *           a {@code String} object giving the type of content;
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   329
     *           examples are "text/xml", "text/plain", and "image/jpeg"
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   330
     * @return a new {@code AttachmentPart} object that contains the
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   331
     *         given data
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   332
     * @exception IllegalArgumentException
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   333
     *               may be thrown if the contentType does not match the type
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   334
     *               of the content object, or if there was no
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   335
     *               {@code DataContentHandler} object for the given
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   336
     *               content object
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   337
     * @see javax.activation.DataHandler
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   338
     * @see javax.activation.DataContentHandler
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   339
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   340
    public AttachmentPart createAttachmentPart(
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   341
        Object content,
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   342
        String contentType) {
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   343
        AttachmentPart attachment = createAttachmentPart();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   344
        attachment.setContent(content, contentType);
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   345
        return attachment;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   346
    }
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   347
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   348
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   349
     * Updates this {@code SOAPMessage} object with all the changes that
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   350
     * have been made to it. This method is called automatically when
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   351
     * {@link SOAPMessage#writeTo(OutputStream)} is  called. However, if
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   352
     * changes are made to a message that was received or to one that has
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   353
     * already been sent, the method {@code saveChanges} needs to be
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   354
     * called explicitly in order to save the changes. The method {@code saveChanges}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   355
     * also generates any changes that can be read back (for example, a
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   356
     * MessageId in profiles that support a message id). All MIME headers in a
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   357
     * message that is created for sending purposes are guaranteed to have
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   358
     * valid values only after {@code saveChanges} has been called.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   359
     * <P>
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   360
     * In addition, this method marks the point at which the data from all
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   361
     * constituent {@code AttachmentPart} objects are pulled into the
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   362
     * message.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   363
     *
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   364
     * @exception SOAPException if there was a problem saving
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   365
     *            changes to this message.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   366
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   367
    public abstract void saveChanges() throws SOAPException;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   368
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   369
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   370
     * Indicates whether this {@code SOAPMessage} object needs to have
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   371
     * the method {@code saveChanges} called on it.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   372
     *
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   373
     * @return {@code true} if {@code saveChanges} needs to be
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   374
     *         called; {@code false} otherwise.
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   375
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   376
    public abstract boolean saveRequired();
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   377
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   378
    /**
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   379
     * Writes this {@code SOAPMessage} object to the given output
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   380
     * stream. The externalization format is as defined by the SOAP 1.1 with
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   381
     * Attachments specification.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   382
     * <P>
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   383
     * If there are no attachments, just an XML stream is written out. For
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   384
     * those messages that have attachments, {@code writeTo} writes a
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   385
     * MIME-encoded byte stream.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   386
     * <P>
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   387
     * Note that this method does not write the transport-specific MIME Headers
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   388
     * of the Message
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   389
     *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   390
     * @param out
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   391
     *           the {@code OutputStream} object to which this {@code SOAPMessage}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   392
     *           object will be written
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   393
     * @exception IOException
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   394
     *               if an I/O error occurs
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   395
     * @exception SOAPException
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   396
     *               if there was a problem in externalizing this SOAP message
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   397
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   398
    public abstract void writeTo(OutputStream out)
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   399
        throws SOAPException, IOException;
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   400
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   401
    /**
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   402
     * Associates the specified value with the specified property. If there was
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   403
     * already a value associated with this property, the old value is
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   404
     * replaced.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   405
     * <p>
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   406
     * The valid property names include
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   407
     * {@link SOAPMessage#WRITE_XML_DECLARATION}  and
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   408
     * {@link SOAPMessage#CHARACTER_SET_ENCODING}. All of these standard SAAJ
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   409
     * properties are prefixed by "javax.xml.soap". Vendors may also add
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   410
     * implementation specific properties. These properties must be prefixed
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   411
     * with package names that are unique to the vendor.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   412
     * <p>
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   413
     * Setting the property {@code WRITE_XML_DECLARATION} to {@code "true"}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   414
     * will cause an XML Declaration to be written out at the start of the SOAP
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   415
     * message. The default value of "false" suppresses this declaration.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   416
     * <p>
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   417
     * The property {@code CHARACTER_SET_ENCODING} defaults to the value
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   418
     * {@code "utf-8"} which causes the SOAP message to be encoded using
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   419
     * UTF-8. Setting {@code CHARACTER_SET_ENCODING} to {@code "utf-16"}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   420
     * causes the SOAP message to be encoded using UTF-16.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   421
     * <p>
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   422
     * Some implementations may allow encodings in addition to UTF-8 and
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   423
     * UTF-16. Refer to your vendor's documentation for details.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   424
     *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   425
     * @param property
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   426
     *           the property with which the specified value is to be
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   427
     *           associated.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   428
     * @param value
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   429
     *           the value to be associated with the specified property
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   430
     * @exception SOAPException
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   431
     *               if the property name is not recognized.
25840
c2002453eec3 8047724: @since tag cleanup in jaxws
henryjen
parents: 22679
diff changeset
   432
     * @since 1.6, SAAJ 1.2
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   433
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   434
    public void setProperty(String property, Object value)
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   435
        throws SOAPException {
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   436
            throw new UnsupportedOperationException("setProperty must be overridden by all subclasses of SOAPMessage");
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   437
    }
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   438
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   439
    /**
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   440
     * Retrieves value of the specified property.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   441
     *
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   442
     * @param property
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   443
     *           the name of the property to retrieve
30005
b2f720a258c4 8077332: tidy warnings from javax/xml
avstepan
parents: 28326
diff changeset
   444
     * @return the value associated with the named property or {@code null}
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   445
     *         if no such property exists.
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   446
     * @exception SOAPException
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   447
     *               if the property name is not recognized.
25840
c2002453eec3 8047724: @since tag cleanup in jaxws
henryjen
parents: 22679
diff changeset
   448
     * @since 1.6, SAAJ 1.2
12009
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   449
     */
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   450
    public Object getProperty(String property) throws SOAPException {
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   451
        throw new UnsupportedOperationException("getProperty must be overridden by all subclasses of SOAPMessage");
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   452
    }
4abb694f273a 7150322: Stop using drop source bundles in jaxws
ohair
parents:
diff changeset
   453
}