summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/zipcode-jaxws/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/zipcode-jaxws/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/zipcode-jaxws/src')
-rw-r--r--java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java6
-rw-r--r--java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java4
-rw-r--r--java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java2
-rw-r--r--java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java8
4 files changed, 10 insertions, 10 deletions
diff --git a/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java b/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java
index cf27332e60..8865d5fe82 100644
--- a/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java
+++ b/java/sca/samples/zipcode-jaxws/src/main/java/location/USLocationImpl.java
@@ -19,9 +19,9 @@
package location;
-import org.osoa.sca.annotations.AllowsPassByReference;
-import org.osoa.sca.annotations.Reference;
-import org.osoa.sca.annotations.Service;
+import org.oasisopen.sca.annotation.AllowsPassByReference;
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Service;
import com.example.uszip.USZipSoap;
import com.example.uszip.GetInfoByAreaCodeResponse.GetInfoByAreaCodeResult;
diff --git a/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java b/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java
index cf50a6cd9e..5ad5f11344 100644
--- a/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java
+++ b/java/sca/samples/zipcode-jaxws/src/main/java/weather/WeatherForecastImpl.java
@@ -19,8 +19,8 @@
package weather;
-import org.osoa.sca.annotations.Reference;
-import org.osoa.sca.annotations.Service;
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Service;
import com.example.weather.WeatherForecastSoap;
import com.example.weather.WeatherForecasts;
diff --git a/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java b/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java
index ec0f05dd6c..53c112b8a3 100644
--- a/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java
+++ b/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeService.java
@@ -19,7 +19,7 @@
package zipcode;
-import org.osoa.sca.annotations.Remotable;
+import org.oasisopen.sca.annotation.Remotable;
/**
* @version $Rev$ $Date$
diff --git a/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java b/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java
index 284e5a3aa3..7c68a77cf2 100644
--- a/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java
+++ b/java/sca/samples/zipcode-jaxws/src/main/java/zipcode/ZipCodeServiceImpl.java
@@ -24,10 +24,10 @@ import java.io.StringWriter;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
-import org.osoa.sca.ServiceRuntimeException;
-import org.osoa.sca.annotations.AllowsPassByReference;
-import org.osoa.sca.annotations.Reference;
-import org.osoa.sca.annotations.Service;
+import org.oasisopen.sca.ServiceRuntimeException;
+import org.oasisopen.sca.annotation.AllowsPassByReference;
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Service;
import com.example.uszip.GetInfoByZIPResponse;
import com.example.uszip.USZipSoap;