summaryrefslogtreecommitdiffstats
path: root/java/sca/stest/sampleTest/src
diff options
context:
space:
mode:
authormcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-01-28 14:07:54 +0000
committermcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-01-28 14:07:54 +0000
commitcd174bad484f3d6f2f755d9fe517b0b37d7f928b (patch)
tree064000c6d9c5f6ee61031848b46e8299f07086ec /java/sca/stest/sampleTest/src
parent85060ec6b7a53cb76d969e5d30d80538c7f7ccb9 (diff)
TUSCANY-2790 - Updated package names from org.osoa.sca to org.oasisopen.sca and from org.osoa.sca.annotations to org.oasisopen.sca.annotation to reflect the new package names in the OASIS Open SCA specifications.
To do this, I: * Renamed the org.osoa.sca package to org.oasisopen.sca using Eclipse refactoring * Renamed the org.osoa.sca.annotations package to org.oasisopen.sca.annotation using Eclipse refactoring * Did a global search and replace for all remaining instances of the old org.osoa package names and replaced with the new org.oasisopen version Hopefully, I have not missed too many instances of the old package name git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@738490 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/stest/sampleTest/src')
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/ASM_0001_Client.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java6
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java6
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/Service1.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/service1Impl.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/service1Impl2.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/service1Impl3.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/service1Impl4.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/service1Impl5.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/service1SupersetImpl.java2
-rw-r--r--java/sca/stest/sampleTest/src/main/java/test/service2Impl.java2
12 files changed, 16 insertions, 16 deletions
diff --git a/java/sca/stest/sampleTest/src/main/java/test/ASM_0001_Client.java b/java/sca/stest/sampleTest/src/main/java/test/ASM_0001_Client.java
index 806e88ae52..bbe76aef62 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/ASM_0001_Client.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/ASM_0001_Client.java
@@ -18,7 +18,7 @@
*/
package test;
-import org.osoa.sca.annotations.Service;
+import org.oasisopen.sca.annotation.Service;
import test.TestInvocation;
diff --git a/java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java b/java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java
index 2518c5aa76..156f93bb1e 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/ASM_0002_Client.java
@@ -18,9 +18,9 @@
*/
package test;
-import org.osoa.sca.annotations.Service;
-import org.osoa.sca.annotations.Reference;
-import org.osoa.sca.annotations.Property;
+import org.oasisopen.sca.annotation.Service;
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Property;
import test.TestInvocation;
diff --git a/java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java b/java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java
index a76d3e1523..7a8369644f 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/ASM_0003_Client.java
@@ -18,9 +18,9 @@
*/
package test;
-import org.osoa.sca.annotations.Service;
-import org.osoa.sca.annotations.Reference;
-import org.osoa.sca.annotations.Property;
+import org.oasisopen.sca.annotation.Service;
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Property;
import test.TestInvocation;
diff --git a/java/sca/stest/sampleTest/src/main/java/test/Service1.java b/java/sca/stest/sampleTest/src/main/java/test/Service1.java
index da6b3d6424..ad654e4a3f 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/Service1.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/Service1.java
@@ -19,7 +19,7 @@
package test;
// TODO: Need to change *ALL* annotations to org.oasisopen.xxxx
-import org.osoa.sca.annotations.Remotable;
+import org.oasisopen.sca.annotation.Remotable;
/**
* A test service interface
diff --git a/java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java b/java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java
index 7db28301e4..ee42e0fe4e 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/TestInvocation.java
@@ -20,7 +20,7 @@ package test;
import javax.jws.WebService;
import javax.jws.WebMethod;
-import org.osoa.sca.annotations.Remotable;
+import org.oasisopen.sca.annotation.Remotable;
/**
* Basic interface to invoke testcases
diff --git a/java/sca/stest/sampleTest/src/main/java/test/service1Impl.java b/java/sca/stest/sampleTest/src/main/java/test/service1Impl.java
index cfbe4a97bb..ff81bd5d54 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/service1Impl.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/service1Impl.java
@@ -18,7 +18,7 @@
*/
package test;
-import org.osoa.sca.annotations.*;
+import org.oasisopen.sca.annotation.*;
/**
* Simple Java component implementation for business interface Service1
diff --git a/java/sca/stest/sampleTest/src/main/java/test/service1Impl2.java b/java/sca/stest/sampleTest/src/main/java/test/service1Impl2.java
index 3c09715921..367a92efac 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/service1Impl2.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/service1Impl2.java
@@ -18,7 +18,7 @@
*/
package test;
-import org.osoa.sca.annotations.*;
+import org.oasisopen.sca.annotation.*;
/**
* Enhanced Java component implementation for business interface Service1,
diff --git a/java/sca/stest/sampleTest/src/main/java/test/service1Impl3.java b/java/sca/stest/sampleTest/src/main/java/test/service1Impl3.java
index 75373f6316..49021867c4 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/service1Impl3.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/service1Impl3.java
@@ -18,7 +18,7 @@
*/
package test;
-import org.osoa.sca.annotations.*;
+import org.oasisopen.sca.annotation.*;
/**
* Enhanced Java component implementation for business interface Service1,
diff --git a/java/sca/stest/sampleTest/src/main/java/test/service1Impl4.java b/java/sca/stest/sampleTest/src/main/java/test/service1Impl4.java
index 05a94bdd63..bb0226ca79 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/service1Impl4.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/service1Impl4.java
@@ -18,7 +18,7 @@
*/
package test;
-import org.osoa.sca.annotations.*;
+import org.oasisopen.sca.annotation.*;
/**
* Enhanced Java component implementation for business interface Service1,
diff --git a/java/sca/stest/sampleTest/src/main/java/test/service1Impl5.java b/java/sca/stest/sampleTest/src/main/java/test/service1Impl5.java
index c4045b696c..a7f2145643 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/service1Impl5.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/service1Impl5.java
@@ -18,7 +18,7 @@
*/
package test;
-import org.osoa.sca.annotations.*;
+import org.oasisopen.sca.annotation.*;
/**
* Java component implementation for business interface Service1
diff --git a/java/sca/stest/sampleTest/src/main/java/test/service1SupersetImpl.java b/java/sca/stest/sampleTest/src/main/java/test/service1SupersetImpl.java
index dfb2fdaf06..e0bc3464f6 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/service1SupersetImpl.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/service1SupersetImpl.java
@@ -18,7 +18,7 @@
*/
package test;
-import org.osoa.sca.annotations.*;
+import org.oasisopen.sca.annotation.*;
/**
* Simple Java component implementation for business interface Service1Superset
diff --git a/java/sca/stest/sampleTest/src/main/java/test/service2Impl.java b/java/sca/stest/sampleTest/src/main/java/test/service2Impl.java
index db2fa299d6..a05a74dc35 100644
--- a/java/sca/stest/sampleTest/src/main/java/test/service2Impl.java
+++ b/java/sca/stest/sampleTest/src/main/java/test/service2Impl.java
@@ -18,7 +18,7 @@
*/
package test;
-import org.osoa.sca.annotations.*;
+import org.oasisopen.sca.annotation.*;
/**
* Simple Java component implementation for business interface Service2