summaryrefslogtreecommitdiffstats
path: root/java/sca/itest/policy-security-token/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'java/sca/itest/policy-security-token/src/main')
-rw-r--r--java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldClientImpl.java4
-rw-r--r--java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldService.java2
-rw-r--r--java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldServiceImpl.java6
3 files changed, 6 insertions, 6 deletions
diff --git a/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldClientImpl.java b/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldClientImpl.java
index 55b798edbe..2150cb63c6 100644
--- a/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldClientImpl.java
+++ b/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldClientImpl.java
@@ -18,8 +18,8 @@
*/
package helloworld;
-import org.osoa.sca.annotations.Reference;
-import org.osoa.sca.annotations.Service;
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Service;
/**
* This class implements the HelloWorld service.
diff --git a/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldService.java b/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldService.java
index 268d90e910..18f74b083f 100644
--- a/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldService.java
+++ b/java/sca/itest/policy-security-token/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.
diff --git a/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldServiceImpl.java b/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldServiceImpl.java
index 6372570d1f..e9787bfac3 100644
--- a/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldServiceImpl.java
+++ b/java/sca/itest/policy-security-token/src/main/java/helloworld/HelloWorldServiceImpl.java
@@ -20,9 +20,9 @@ package helloworld;
import javax.security.auth.Subject;
-import org.osoa.sca.RequestContext;
-import org.osoa.sca.annotations.Context;
-import org.osoa.sca.annotations.Service;
+import org.oasisopen.sca.RequestContext;
+import org.oasisopen.sca.annotation.Context;
+import org.oasisopen.sca.annotation.Service;
/**
* This class implements the HelloWorld service.