01: /*
02: * HTerminateJettyMain.java
03: *
04: * Created on March 23, 2006, 1:25 PM
05: *
06: * To change this template, choose Tools | Options and locate the template under
07: * the Source Creation and Management node. Right-click the template and choose
08: * Open. You can then make changes to the template in the Source Editor.
09: */
10:
11: package simpleorm.simplehtml;
12:
13: /**
14: *
15: * @author aberglas
16: */
17: public class HTerminateJettyMain {
18:
19: public static HMain uimain = new HMain();
20:
21: public static void main(String args[]) throws Exception {
22: uimain.shutdownExisting();
23: }
24:
25: }
|