You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by bd...@apache.org on 2011/01/14 18:31:36 UTC

svn commit: r1059083 - /tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/AsyncResponseInvoker.java

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