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 --- .../demos/load-balancing-webapp/src/main/java/client/LaunchClient.java | 2 +- .../load-balancing-webapp/src/main/java/helloworld/HelloWorldImpl.java | 2 +- .../src/main/java/helloworld/HelloWorldService.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'java/sca/demos/load-balancing-webapp') diff --git a/java/sca/demos/load-balancing-webapp/src/main/java/client/LaunchClient.java b/java/sca/demos/load-balancing-webapp/src/main/java/client/LaunchClient.java index efa89b4fe9..872893945e 100644 --- a/java/sca/demos/load-balancing-webapp/src/main/java/client/LaunchClient.java +++ b/java/sca/demos/load-balancing-webapp/src/main/java/client/LaunchClient.java @@ -27,7 +27,7 @@ import org.apache.tuscany.sca.node.SCAClient; import org.apache.tuscany.sca.node.SCANode2; import org.apache.tuscany.sca.node.SCANode2Factory; import org.apache.tuscany.sca.node.SCANode2Factory.SCAContribution; -import org.osoa.sca.ServiceRuntimeException; +import org.oasisopen.sca.ServiceRuntimeException; public class LaunchClient { public static void main(String[] args) throws Exception { diff --git a/java/sca/demos/load-balancing-webapp/src/main/java/helloworld/HelloWorldImpl.java b/java/sca/demos/load-balancing-webapp/src/main/java/helloworld/HelloWorldImpl.java index 65dc030d89..23beb7f933 100644 --- a/java/sca/demos/load-balancing-webapp/src/main/java/helloworld/HelloWorldImpl.java +++ b/java/sca/demos/load-balancing-webapp/src/main/java/helloworld/HelloWorldImpl.java @@ -18,7 +18,7 @@ */ package helloworld; -import org.osoa.sca.annotations.Service; +import org.oasisopen.sca.annotation.Service; /** * This class implements the HelloWorld service. diff --git a/java/sca/demos/load-balancing-webapp/src/main/java/helloworld/HelloWorldService.java b/java/sca/demos/load-balancing-webapp/src/main/java/helloworld/HelloWorldService.java index 7245513b2a..513c2e3129 100644 --- a/java/sca/demos/load-balancing-webapp/src/main/java/helloworld/HelloWorldService.java +++ b/java/sca/demos/load-balancing-webapp/src/main/java/helloworld/HelloWorldService.java @@ -18,7 +18,7 @@ */ package helloworld; -import org.osoa.sca.annotations.Remotable; +import org.oasisopen.sca.annotation.Remotable; /** * This is the business interface of the HelloWorld greetings service. -- cgit v1.2.3