File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
core/src/main/java/org/springframework/ws/client/core/support Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 25
25
import org .springframework .util .Assert ;
26
26
import org .springframework .ws .WebServiceMessageFactory ;
27
27
import org .springframework .ws .client .core .WebServiceTemplate ;
28
+ import org .springframework .ws .client .support .destination .DestinationProvider ;
28
29
import org .springframework .ws .client .support .interceptor .ClientInterceptor ;
29
30
import org .springframework .ws .transport .WebServiceMessageSender ;
30
31
@@ -93,6 +94,16 @@ public final void setDefaultUri(String uri) {
93
94
webServiceTemplate .setDefaultUri (uri );
94
95
}
95
96
97
+ /** Returns the destination provider used by the gateway. */
98
+ public final DestinationProvider getDestinationProvider () {
99
+ return webServiceTemplate .getDestinationProvider ();
100
+ }
101
+
102
+ /** Set the destination provider URI used by the gateway. */
103
+ public final void setDestinationProvider (DestinationProvider destinationProvider ) {
104
+ webServiceTemplate .setDestinationProvider (destinationProvider );
105
+ }
106
+
96
107
/** Returns the <code>WebServiceMessageSender</code> used by the gateway. */
97
108
public final WebServiceMessageSender [] getMessageSender () {
98
109
return webServiceTemplate .getMessageSenders ();
You can’t perform that action at this time.
0 commit comments