Author: bdaniel
Date: Fri Jan 14 17:31:35 2011
New Revision: 1059083
URL: http://svn.apache.org/viewvc?rev=1059083&view=rev
Log:
Add getter methods for the endpoint and endpoint and endpointRef to
AsyncResponseInvoker
Modified:
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java
Modified:
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java?rev=1059083&r1=1059082&r2=1059083&view=diff
==============================================================================
---
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java
(original)
+++
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java
Fri Jan 14 17:31:35 2011
@@ -148,4 +148,11 @@ public class AsyncResponseInvoker<T> imp
return bindingType;
} // end method getBindingType
+ public RuntimeEndpoint getRequestEndpoint() {
+ return this.requestEndpoint;
+ }
+
+ public RuntimeEndpointReference getResponseEndpointReference() {
+ return this.responseEndpointReference;
+ }
} // end class