Remove Tabs, per Jococo
[aaf/authz.git] / auth / auth-core / src / test / java / org / onap / aaf / auth / util / test / TestKill.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  */
20
21 package org.onap.aaf.auth.util.test;
22
23 import java.io.IOException;
24 import java.util.concurrent.ExecutorService;
25 import java.util.concurrent.Executors;
26 import java.util.concurrent.Future;
27
28 public class TestKill implements Runnable {
29
30     public static void main(String[] args) {
31         ExecutorService es = Executors.newSingleThreadExecutor();
32         TestKill tk = new TestKill();
33         Future<?> app = es.submit(tk);
34         Runtime.getRuntime().addShutdownHook(new Thread() {
35             @Override
36             public void run() {
37                 System.out.println("Shutdown Hook, thread: setting interrupt");
38                 app.cancel(true);
39                 tk.longProcess();
40                 es.shutdown();
41             }
42         });
43         System.out.println("Service Start");
44         System.out.print("Hit <enter> to end:");
45         try {
46             System.in.read();
47             System.exit(0);
48         } catch (IOException e) {
49         }
50     }
51
52     @Override
53     public void run() {
54     }
55     
56     private void longProcess() {
57         System.out.println("Starting long cleanup process");
58         try {
59             Thread.sleep(10000);
60         } catch (InterruptedException e) {
61             e.printStackTrace();
62         }
63         System.out.println("Ending long cleanup process");
64     }
65 }