summaryrefslogtreecommitdiff
path: root/java/tests/ServiceConfigurator/TestService.java
blob: d8923cd83a5d9a2a8496fc928be4c31711d82e3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*************************************************
 *
 * = PACKAGE
 *    tests.ServiceConfigurator
 *
 * = FILENAME
 *    TestService.java
 *
 *@author Prashant Jain
 *
 *************************************************/
package tests.ServiceConfigurator;

import ACE.ServiceConfigurator.*;
import ACE.OS.*;

public class TestService extends ServiceObject
{
  public int init (String [] args)
  {
    ACE.DEBUG ("In Test_Service::init() with arguments: " +
    	       args[0] + args[1]);

    //ACE.DEBUG ("In new Test_Service::init() with arguments: " +
    //       args[0] + args[1]);
    return 0;
  }

}