summaryrefslogtreecommitdiffstats
path: root/java/sca/itest
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-06-11 16:55:44 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-06-11 16:55:44 +0000
commit17d2f439c3be0f7288c72846a60d42a120dce9ce (patch)
treedc5ce7563cdaf63c43c1ad45a526cf93cee0bab3 /java/sca/itest
parent5affea192673c86fa818e69705e132b4af364c0b (diff)
TUSCANY-3091 rename Endpoint2 and EndpointReference2 to remove the 2 subscript now they are in use full time
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@783845 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/itest')
-rw-r--r--java/sca/itest/builder/src/test/java/org/apache/tuscany/sca/itest/builder/TestUtils.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/java/sca/itest/builder/src/test/java/org/apache/tuscany/sca/itest/builder/TestUtils.java b/java/sca/itest/builder/src/test/java/org/apache/tuscany/sca/itest/builder/TestUtils.java
index fc18012a61..f4d8b094c7 100644
--- a/java/sca/itest/builder/src/test/java/org/apache/tuscany/sca/itest/builder/TestUtils.java
+++ b/java/sca/itest/builder/src/test/java/org/apache/tuscany/sca/itest/builder/TestUtils.java
@@ -38,8 +38,8 @@ import org.apache.tuscany.sca.assembly.ComponentService;
import org.apache.tuscany.sca.assembly.ComponentReference;
import org.apache.tuscany.sca.assembly.Composite;
import org.apache.tuscany.sca.assembly.Contract;
-import org.apache.tuscany.sca.assembly.Endpoint2;
-import org.apache.tuscany.sca.assembly.EndpointReference2;
+import org.apache.tuscany.sca.assembly.Endpoint;
+import org.apache.tuscany.sca.assembly.EndpointReference;
import org.apache.tuscany.sca.assembly.Implementation;
import org.apache.tuscany.sca.assembly.Reference;
import org.apache.tuscany.sca.assembly.Service;
@@ -216,7 +216,7 @@ public class TestUtils {
// print component service endpoints
for (ComponentService componentService : component.getServices()) {
buffer += indent + "Service - " + componentService.getName() + "\n";
- for (Endpoint2 endpoint : componentService.getEndpoints()) {
+ for (Endpoint endpoint : componentService.getEndpoints()) {
if (endpoint.getBinding() != null){
buffer += printEndpoint(endpoint, indent);
}
@@ -225,7 +225,7 @@ public class TestUtils {
for (ComponentReference componentReference : component.getReferences()) {
buffer += indent + "Reference - " + componentReference.getName() + "\n";
- for (EndpointReference2 endpointReference : componentReference.getEndpointReferences()) {
+ for (EndpointReference endpointReference : componentReference.getEndpointReferences()) {
buffer += printEndpointReference(endpointReference, indent);
}
}
@@ -241,7 +241,7 @@ public class TestUtils {
return buffer;
}
- protected static String printEndpoint(Endpoint2 endpoint, String indent){
+ protected static String printEndpoint(Endpoint endpoint, String indent){
String buffer = "";
buffer += indent + " Endpoint - Component: " + endpoint.getComponent().getName() +"\n";
@@ -251,7 +251,7 @@ public class TestUtils {
return buffer;
}
- protected static String printEndpointReference(EndpointReference2 endpointReference, String indent){
+ protected static String printEndpointReference(EndpointReference endpointReference, String indent){
String buffer = "";
buffer += indent + " EndpointReference - Component: " + endpointReference.getComponent().getName() +"\n";