From cd174bad484f3d6f2f755d9fe517b0b37d7f928b Mon Sep 17 00:00:00 2001 From: mcombellack Date: Wed, 28 Jan 2009 14:07:54 +0000 Subject: 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 --- .../samples/callback-ws-client/src/main/java/myapp/MyClient.java | 2 +- .../callback-ws-client/src/main/java/myapp/MyClientImpl.java | 6 +++--- .../callback-ws-client/src/main/java/myserver/MyService.java | 6 +++--- .../src/main/java/myserver/MyServiceCallback.java | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'java/sca/samples/callback-ws-client/src') 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}. -- cgit v1.2.3