summaryrefslogtreecommitdiffstats
path: root/java/sca/tutorials/store/www-services/catalog-amazon/store-db
diff options
context:
space:
mode:
Diffstat (limited to 'java/sca/tutorials/store/www-services/catalog-amazon/store-db')
-rw-r--r--java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/Catalog.java2
-rw-r--r--java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CatalogImpl.java4
-rw-r--r--java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CurrencyConverter.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/Catalog.java b/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/Catalog.java
index 9f784b0848..b45e5efccb 100644
--- a/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/Catalog.java
+++ b/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/Catalog.java
@@ -19,7 +19,7 @@
package services;
-import org.osoa.sca.annotations.Remotable;
+import org.oasisopen.sca.annotation.Remotable;
@Remotable
public interface Catalog {
diff --git a/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CatalogImpl.java b/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CatalogImpl.java
index c8b3bbf621..f8149bbe8d 100644
--- a/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CatalogImpl.java
+++ b/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CatalogImpl.java
@@ -25,8 +25,8 @@ import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
-import org.osoa.sca.annotations.Property;
-import org.osoa.sca.annotations.Reference;
+import org.oasisopen.sca.annotation.Property;
+import org.oasisopen.sca.annotation.Reference;
public class CatalogImpl implements Catalog {
@Property
diff --git a/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CurrencyConverter.java b/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CurrencyConverter.java
index 8b0f70907d..c4b1800a3d 100644
--- a/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CurrencyConverter.java
+++ b/java/sca/tutorials/store/www-services/catalog-amazon/store-db/src/main/java/services/CurrencyConverter.java
@@ -19,7 +19,7 @@
package services;
-import org.osoa.sca.annotations.Remotable;
+import org.oasisopen.sca.annotation.Remotable;
@Remotable
public interface CurrencyConverter {