summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/callback-ws-client/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/samples/callback-ws-client/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/samples/callback-ws-client/src')
-rw-r--r--java/sca/samples/callback-ws-client/src/main/java/myapp/MyClient.java2
-rw-r--r--java/sca/samples/callback-ws-client/src/main/java/myapp/MyClientImpl.java6
-rw-r--r--java/sca/samples/callback-ws-client/src/main/java/myserver/MyService.java6
-rw-r--r--java/sca/samples/callback-ws-client/src/main/java/myserver/MyServiceCallback.java2
4 files changed, 8 insertions, 8 deletions
diff --git a/java/sca/samples/callback-ws-client/src/main/java/myapp/MyClient.java b/java/sca/samples/callback-ws-client/src/main/java/myapp/MyClient.java
index e515b55788..329edbe1c8 100644
--- a/java/sca/samples/callback-ws-client/src/main/java/myapp/MyClient.java
+++ b/java/sca/samples/callback-ws-client/src/main/java/myapp/MyClient.java
@@ -18,7 +18,7 @@
*/
package myapp;
-import org.osoa.sca.annotations.OneWay;
+import org.oasisopen.sca.annotation.OneWay;
/**
* The client interface
diff --git a/java/sca/samples/callback-ws-client/src/main/java/myapp/MyClientImpl.java b/java/sca/samples/callback-ws-client/src/main/java/myapp/MyClientImpl.java
index ece769236c..4f3a3bb63b 100644
--- a/java/sca/samples/callback-ws-client/src/main/java/myapp/MyClientImpl.java
+++ b/java/sca/samples/callback-ws-client/src/main/java/myapp/MyClientImpl.java
@@ -24,9 +24,9 @@ import myserver.MyServiceCallback;
import org.apache.tuscany.sca.node.SCAClient;
import org.apache.tuscany.sca.node.SCANode;
import org.apache.tuscany.sca.node.SCANodeFactory;
-import org.osoa.sca.annotations.Reference;
-import org.osoa.sca.annotations.Scope;
-import org.osoa.sca.annotations.Service;
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Scope;
+import org.oasisopen.sca.annotation.Service;
/**
* Remote Web service client with callback interface
diff --git a/java/sca/samples/callback-ws-client/src/main/java/myserver/MyService.java b/java/sca/samples/callback-ws-client/src/main/java/myserver/MyService.java
index 1850eae1bc..9bc056318b 100644
--- a/java/sca/samples/callback-ws-client/src/main/java/myserver/MyService.java
+++ b/java/sca/samples/callback-ws-client/src/main/java/myserver/MyService.java
@@ -18,9 +18,9 @@
*/
package myserver;
-import org.osoa.sca.annotations.Callback;
-import org.osoa.sca.annotations.OneWay;
-import org.osoa.sca.annotations.Remotable;
+import org.oasisopen.sca.annotation.Callback;
+import org.oasisopen.sca.annotation.OneWay;
+import org.oasisopen.sca.annotation.Remotable;
/**
* The remote service that will be invoked by the client
diff --git a/java/sca/samples/callback-ws-client/src/main/java/myserver/MyServiceCallback.java b/java/sca/samples/callback-ws-client/src/main/java/myserver/MyServiceCallback.java
index bf5f87a4f9..caef8fcc98 100644
--- a/java/sca/samples/callback-ws-client/src/main/java/myserver/MyServiceCallback.java
+++ b/java/sca/samples/callback-ws-client/src/main/java/myserver/MyServiceCallback.java
@@ -18,7 +18,7 @@
*/
package myserver;
-import org.osoa.sca.annotations.Remotable;
+import org.oasisopen.sca.annotation.Remotable;
/**
* The callback interface for {@link MyService}.