summaryrefslogtreecommitdiff
path: root/java/tests/ServiceConfigurator/mainTest.java
blob: 6dc3149cc61928e303d35ec4ac80ff8bce6738f9 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*************************************************
 *
 * = PACKAGE
 *    tests.ServiceConfigurator
 *
 * = FILENAME
 *    mainTest.java
 *
 *@author Prashant Jain
 *
 *************************************************/
package tests.ServiceConfigurator;

import ACE.ServiceConfigurator.*;
import ACE.OS.*;
import java.io.*;

public class mainTest
{

  public static void main (String args [])
  {
    ServiceConfig daemon = new ServiceConfig ();
    try
      {
	daemon.open (args);
	Thread.sleep (10000);
	daemon.open (args);
      }
    catch (InterruptedException e)
      {
	ACE.ERROR (e);
      }
    catch (FileNotFoundException e)
      {
	ACE.ERROR (e);
      }
    catch (IOException e)
      {
	ACE.ERROR (e);
      } 
    catch (ClassNotFoundException e)
      {
	ACE.ERROR (e);
      }
    catch (IllegalAccessException e)
      {
	ACE.ERROR (e);	
      }
    catch (InstantiationException e)
      {
	ACE.ERROR (e);
      }
  }

}