diff options
author | bdaniel <bdaniel@13f79535-47bb-0310-9956-ffa450edef68> | 2011-01-14 17:31:35 +0000 |
---|---|---|
committer | bdaniel <bdaniel@13f79535-47bb-0310-9956-ffa450edef68> | 2011-01-14 17:31:35 +0000 |
commit | 71c5242e45ecbdfcafe6e43fc355e079c67e2b2d (patch) | |
tree | 6ef8ef585e424119013b75e999adfb8d66f47740 /sca-java-2.x/trunk | |
parent | e57167ee2a0b9dd6fa8e7f88cb5a4e79759e00c6 (diff) |
Add getter methods for the endpoint and endpoint and endpointRef to AsyncResponseInvoker
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1059083 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java index 43e34c1173..8bcda4efb2 100644 --- a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java +++ b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java @@ -148,4 +148,11 @@ public class AsyncResponseInvoker<T> implements InvokerAsyncResponse, Serializab return bindingType;
} // end method getBindingType
+ public RuntimeEndpoint getRequestEndpoint() {
+ return this.requestEndpoint;
+ }
+
+ public RuntimeEndpointReference getResponseEndpointReference() {
+ return this.responseEndpointReference;
+ }
} // end class
|