summaryrefslogtreecommitdiff
path: root/java/tests/ServiceConfigurator/reloadTest.java
blob: 3e8ac59984119bef301126c25e6a8ad1bd8a40ec (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
57
58
59
60
61
62
63
64
/*************************************************
 *
 * = PACKAGE
 *    tests.ServiceConfigurator
 *
 * = FILENAME
 *    mainTest.java
 *
 *@author Prashant Jain, Everett Anderson
 *
 *************************************************/
package tests.ServiceConfigurator;

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

public class reloadTest
{

  public static void main (String args [])
  {
    ServiceConfig daemon = new ServiceConfig ();
    try
      {
	daemon.open (args);
	Thread.sleep (10000);

	// ***** Note: reloading requires the user to remove the
	// service and prepare for reload!  
	daemon.remove("TimeService");
	daemon.prepareForReload();

	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 + "foo");
      }
    catch (IllegalAccessException e)
      {
	ACE.ERROR (e);	
      }
    catch (InstantiationException e)
      {
	ACE.ERROR (e);
      }

    System.err.println("End of reloadTest");
  }

}