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 --- .../ws-void-args-return/src/main/java/voidtest/HelloWorldImpl.java | 2 +- .../src/main/java/voidtest/HelloWorldService.java | 4 ++-- .../ws-void-args-return/src/main/java/voidtest/TestClientImpl.java | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'java/sca/itest/ws-void-args-return/src') diff --git a/java/sca/itest/ws-void-args-return/src/main/java/voidtest/HelloWorldImpl.java b/java/sca/itest/ws-void-args-return/src/main/java/voidtest/HelloWorldImpl.java index dc949b5191..dfb7f0a474 100644 --- a/java/sca/itest/ws-void-args-return/src/main/java/voidtest/HelloWorldImpl.java +++ b/java/sca/itest/ws-void-args-return/src/main/java/voidtest/HelloWorldImpl.java @@ -18,7 +18,7 @@ */ package voidtest; -import org.osoa.sca.annotations.Service; +import org.oasisopen.sca.annotation.Service; /** * This class implements the HelloWorld service. diff --git a/java/sca/itest/ws-void-args-return/src/main/java/voidtest/HelloWorldService.java b/java/sca/itest/ws-void-args-return/src/main/java/voidtest/HelloWorldService.java index 4777f793e0..9bb945b71a 100644 --- a/java/sca/itest/ws-void-args-return/src/main/java/voidtest/HelloWorldService.java +++ b/java/sca/itest/ws-void-args-return/src/main/java/voidtest/HelloWorldService.java @@ -18,8 +18,8 @@ */ package voidtest; -import org.osoa.sca.annotations.OneWay; -import org.osoa.sca.annotations.Remotable; +import org.oasisopen.sca.annotation.OneWay; +import org.oasisopen.sca.annotation.Remotable; /** * This is the business interface of the HelloWorld greetings service. diff --git a/java/sca/itest/ws-void-args-return/src/main/java/voidtest/TestClientImpl.java b/java/sca/itest/ws-void-args-return/src/main/java/voidtest/TestClientImpl.java index 1cdd094c50..9ea0a98f95 100644 --- a/java/sca/itest/ws-void-args-return/src/main/java/voidtest/TestClientImpl.java +++ b/java/sca/itest/ws-void-args-return/src/main/java/voidtest/TestClientImpl.java @@ -21,9 +21,9 @@ package voidtest; import static junit.framework.Assert.assertEquals; import static junit.framework.Assert.assertNull; -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; @Service(TestClient.class) @Scope("COMPOSITE") -- cgit v1.2.3