summaryrefslogtreecommitdiffstats
path: root/branches/sca-equinox/samples/helloworld-web-callback/src/main/java/sample/HelloworldService.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--branches/sca-equinox/samples/helloworld-web-callback/src/main/java/sample/HelloworldService.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/branches/sca-equinox/samples/helloworld-web-callback/src/main/java/sample/HelloworldService.java b/branches/sca-equinox/samples/helloworld-web-callback/src/main/java/sample/HelloworldService.java
deleted file mode 100644
index d2c1fc2def..0000000000
--- a/branches/sca-equinox/samples/helloworld-web-callback/src/main/java/sample/HelloworldService.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package sample;
-
-import org.osoa.sca.annotations.Callback;
-import org.osoa.sca.annotations.OneWay;
-import org.osoa.sca.annotations.Remotable;
-
-@Remotable
-@Callback(HelloworldCallback.class)
-public interface HelloworldService {
-
- @OneWay
- void sayHello(String name);
-
-}