author | duke |
Wed, 05 Jul 2017 16:53:22 +0200 | |
changeset 2775 | c33e7d38c921 |
parent 2678 | 57cf2a1c1a05 |
permissions | -rw-r--r-- |
8 | 1 |
/* |
2678
57cf2a1c1a05
6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents:
8
diff
changeset
|
2 |
* Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved. |
8 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Sun designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Sun in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
* have any questions. |
|
24 |
*/ |
|
25 |
||
26 |
package javax.xml.ws; |
|
27 |
||
28 |
import javax.xml.transform.Source; |
|
29 |
import javax.xml.bind.JAXBContext; |
|
30 |
||
31 |
/** The <code>LogicalMessage</code> interface represents a |
|
32 |
* protocol agnostic XML message and contains methods that |
|
33 |
* provide access to the payload of the message. |
|
34 |
* |
|
35 |
* @since JAX-WS 2.0 |
|
36 |
**/ |
|
37 |
public interface LogicalMessage { |
|
38 |
||
39 |
/** Gets the message payload as an XML source, may be called |
|
40 |
* multiple times on the same LogicalMessage instance, always |
|
2678
57cf2a1c1a05
6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents:
8
diff
changeset
|
41 |
* returns a new <code>Source</code> that may be used to retrieve the entire |
8 | 42 |
* message payload. |
43 |
* |
|
2678
57cf2a1c1a05
6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents:
8
diff
changeset
|
44 |
* <p>If the returned <code>Source</code> is an instance of |
57cf2a1c1a05
6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents:
8
diff
changeset
|
45 |
* <code>DOMSource</code>, then |
8 | 46 |
* modifications to the encapsulated DOM tree change the message |
47 |
* payload in-place, there is no need to susequently call |
|
2678
57cf2a1c1a05
6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents:
8
diff
changeset
|
48 |
* <code>setPayload</code>. Other types of <code>Source</code> provide only |
8 | 49 |
* read access to the message payload. |
50 |
* |
|
2678
57cf2a1c1a05
6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents:
8
diff
changeset
|
51 |
* @return The contained message payload; returns <code>null</code> if no |
8 | 52 |
* payload is present in this message. |
53 |
**/ |
|
54 |
public Source getPayload(); |
|
55 |
||
56 |
/** Sets the message payload |
|
57 |
* |
|
58 |
* @param payload message payload |
|
59 |
* @throws WebServiceException If any error during the setting |
|
60 |
* of the payload in this message |
|
61 |
* @throws java.lang.UnsupportedOperationException If this |
|
62 |
* operation is not supported |
|
63 |
**/ |
|
64 |
public void setPayload(Source payload); |
|
65 |
||
66 |
/** Gets the message payload as a JAXB object. Note that there is no |
|
67 |
* connection between the returned object and the message payload, |
|
68 |
* changes to the payload require calling <code>setPayload</code>. |
|
69 |
* |
|
70 |
* @param context The JAXBContext that should be used to unmarshall |
|
71 |
* the message payload |
|
2678
57cf2a1c1a05
6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents:
8
diff
changeset
|
72 |
* @return The contained message payload; returns <code>null</code> if no |
8 | 73 |
* payload is present in this message |
74 |
* @throws WebServiceException If an error occurs when using a supplied |
|
75 |
* JAXBContext to unmarshall the payload. The cause of |
|
76 |
* the WebServiceException is the original JAXBException. |
|
77 |
**/ |
|
78 |
public Object getPayload(JAXBContext context); |
|
79 |
||
80 |
/** Sets the message payload |
|
81 |
* |
|
82 |
* @param payload message payload |
|
83 |
* @param context The JAXBContext that should be used to marshall |
|
84 |
* the payload |
|
85 |
* @throws java.lang.UnsupportedOperationException If this |
|
86 |
* operation is not supported |
|
87 |
* @throws WebServiceException If an error occurs when using the supplied |
|
88 |
* JAXBContext to marshall the payload. The cause of |
|
89 |
* the WebServiceException is the original JAXBException. |
|
90 |
**/ |
|
91 |
public void setPayload(Object payload, JAXBContext context); |
|
92 |
} |