File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/support Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ configure(allprojects) {
14
14
15
15
ext. springVersion = " 4.0.9.RELEASE"
16
16
ext. springSecurityVersion = " 3.2.9.RELEASE"
17
- ext. axiomVersion = " 1.2.15 "
17
+ ext. axiomVersion = " 1.2.16 "
18
18
ext. smackVersion = " 4.1.6"
19
19
20
20
apply plugin : " java"
Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ public static void removeContents(OMContainer container) {
115
115
* @param envelope the SOAP envelope to be converted
116
116
* @return the converted document
117
117
* @throws IllegalArgumentException in case of errors
118
- * @see org.apache.rampart.util.Axis2Util#getDocumentFromSOAPEnvelope(SOAPEnvelope, boolean)
119
118
*/
120
119
public static Document toDocument (SOAPEnvelope envelope ) {
121
120
try {
@@ -144,7 +143,6 @@ public static Document toDocument(SOAPEnvelope envelope) {
144
143
* @param document the document to be converted
145
144
* @return the converted envelope
146
145
* @throws IllegalArgumentException in case of errors
147
- * @see org.apache.rampart.util.Axis2Util#getSOAPEnvelopeFromDOMDocument(Document, boolean)
148
146
*/
149
147
public static SOAPEnvelope toEnvelope (Document document ) {
150
148
try {
@@ -163,6 +161,7 @@ public static SOAPEnvelope toEnvelope(Document document) {
163
161
164
162
XMLInputFactory inputFactory = StAXUtils .getXMLInputFactory ();
165
163
164
+ @ SuppressWarnings ("deprecation" )
166
165
StAXSOAPModelBuilder stAXSOAPModelBuilder =
167
166
new StAXSOAPModelBuilder (inputFactory .createXMLStreamReader (bis ), null );
168
167
SOAPEnvelope envelope = stAXSOAPModelBuilder .getSOAPEnvelope ();
You can’t perform that action at this time.
0 commit comments