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 --- .../calculator-ws-webapp/src/main/java/calculator/AddService.java | 2 +- .../calculator-ws-webapp/src/main/java/calculator/AddServiceImpl.java | 2 +- .../src/main/java/calculator/CalculatorServiceImpl.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'java/sca/samples/calculator-ws-webapp') diff --git a/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/AddService.java b/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/AddService.java index c3c789e745..c7e6383559 100644 --- a/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/AddService.java +++ b/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/AddService.java @@ -18,7 +18,7 @@ */ package calculator; -import org.osoa.sca.annotations.Remotable; +import org.oasisopen.sca.annotation.Remotable; /** * The interface for the add service diff --git a/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/AddServiceImpl.java b/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/AddServiceImpl.java index a7049729f7..0af6d681ce 100644 --- a/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/AddServiceImpl.java +++ b/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/AddServiceImpl.java @@ -18,7 +18,7 @@ */ package calculator; -import org.osoa.sca.annotations.Service; +import org.oasisopen.sca.annotation.Service; /** * An implementation of the Add service diff --git a/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/CalculatorServiceImpl.java b/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/CalculatorServiceImpl.java index bf3b0303ec..0f03d6e7a1 100644 --- a/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/CalculatorServiceImpl.java +++ b/java/sca/samples/calculator-ws-webapp/src/main/java/calculator/CalculatorServiceImpl.java @@ -18,7 +18,7 @@ */ package calculator; -import org.osoa.sca.annotations.Reference; +import org.oasisopen.sca.annotation.Reference; /** * An implementation of the Calculator service. -- cgit v1.2.3