diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-15 23:32:57 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-15 23:32:57 +0000 |
commit | cbbc37651681238615e4a3935496ab74b085fb97 (patch) | |
tree | 8ec3b36fdb7ab72530f24d672116c95c79e09298 /java/tests/ServiceConfigurator/TestService.java | |
parent | aec4807cfcc242a7b8de22a90c1c0be1aab1984a (diff) | |
download | ATCD-TAO-1_1.tar.gz |
This commit was manufactured by cvs2svn to create tag 'TAO-1_1'.TAO-1_1
Diffstat (limited to 'java/tests/ServiceConfigurator/TestService.java')
-rw-r--r-- | java/tests/ServiceConfigurator/TestService.java | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/java/tests/ServiceConfigurator/TestService.java b/java/tests/ServiceConfigurator/TestService.java deleted file mode 100644 index 7b34c181c60..00000000000 --- a/java/tests/ServiceConfigurator/TestService.java +++ /dev/null @@ -1,52 +0,0 @@ -/************************************************* - * - * = PACKAGE - * tests.ServiceConfigurator - * - * = FILENAME - * TestService.java - * - *@author Prashant Jain - * - *************************************************/ -package tests.ServiceConfigurator; - -import JACE.ServiceConfigurator.*; -import JACE.OS.*; - -public class TestService extends ServiceObject -{ - public int init (String [] args) - { - System.out.println("TestService init with arguments: "); - - if (args != null) - for (int i = 0; i < args.length; i++) - ACE.DEBUG (args[i]); - - return 0; - } - - public int suspend() - { - System.out.println("TestService suspend ----"); - - return 0; - } - - public int resume() - { - System.out.println("TestService resume ----"); - - return 0; - } - - public int fini() - { - System.out.println("TestService remove ----"); - - return 0; - } - -} - |