You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -88,20 +88,20 @@ public void setValidateResponse(boolean validateResponse) {
88
88
*/
89
89
90
90
/**
91
-
* Validates a server-side incoming request. Delegates to {@link #validateMessage(SoapMessage)} if the {@link
92
-
* #setValidateRequest(boolean) validateRequest} property is <code>true</code>.
91
+
* Validates a server-side incoming request. Delegates to {@link #validateMessage(org.springframework.ws.soap.SoapMessage,org.springframework.ws.context.MessageContext)}
92
+
* if the {@link #setValidateRequest(boolean) validateRequest} property is <code>true</code>.
93
93
*
94
94
* @param messageContext the message context, containing the request to be validated
95
95
* @param endpoint chosen endpoint to invoke
96
96
* @return <code>true</code> if the request was valid; <code>false</code> otherwise.
@@ -117,21 +117,21 @@ public final boolean handleRequest(MessageContext messageContext, Object endpoin
117
117
}
118
118
119
119
/**
120
-
* Secures a server-side outgoing response. Delegates to {@link #secureMessage(SoapMessage)} if the {@link
121
-
* #setSecureResponse(boolean) secureResponse} property is <code>true</code>.
120
+
* Secures a server-side outgoing response. Delegates to {@link #secureMessage(org.springframework.ws.soap.SoapMessage,org.springframework.ws.context.MessageContext)}
121
+
* if the {@link #setSecureResponse(boolean) secureResponse} property is <code>true</code>.
122
122
*
123
123
* @param messageContext the message context, containing the response to be secured
124
124
* @param endpoint chosen endpoint to invoke
125
125
* @return <code>true</code> if the response was secured; <code>false</code> otherwise.
@@ -160,19 +160,19 @@ public boolean understands(SoapHeaderElement headerElement) {
160
160
*/
161
161
162
162
/**
163
-
* Secures a client-side outgoing request. Delegates to {@link #secureMessage(SoapMessage)} if the {@link
164
-
* #setSecureRequest(boolean) secureRequest} property is <code>true</code>.
163
+
* Secures a client-side outgoing request. Delegates to {@link #secureMessage(org.springframework.ws.soap.SoapMessage,org.springframework.ws.context.MessageContext)}
164
+
* if the {@link #setSecureRequest(boolean) secureRequest} property is <code>true</code>.
165
165
*
166
166
* @param messageContext the message context, containing the request to be secured
167
167
* @return <code>true</code> if the response was secured; <code>false</code> otherwise.
@@ -188,20 +188,20 @@ public final boolean handleRequest(MessageContext messageContext) throws WebServ
188
188
}
189
189
190
190
/**
191
-
* Validates a client-side incoming response. Delegates to {@link #validateMessage(SoapMessage)} if the {@link
192
-
* #setValidateResponse(boolean) validateResponse} property is <code>true</code>.
191
+
* Validates a client-side incoming response. Delegates to {@link #validateMessage(org.springframework.ws.soap.SoapMessage,org.springframework.ws.context.MessageContext)}
192
+
* if the {@link #setValidateResponse(boolean) validateResponse} property is <code>true</code>.
193
193
*
194
194
* @param messageContext the message context, containing the response to be validated
195
195
* @return <code>true</code> if the request was valid; <code>false</code> otherwise.
0 commit comments