Merge "Fix for sonar issue"
[clamp.git] / src / main / java / org / onap / clamp / clds / util / ClampTimer.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * Modifications copyright (c) 2018 Nokia
21  * ===================================================================
22  *
23  */
24 package org.onap.clamp.clds.util;
25
26 import java.util.Timer;
27 import java.util.TimerTask;
28 import com.att.eelf.configuration.EELFLogger;
29 import com.att.eelf.configuration.EELFManager;
30
31 import org.springframework.security.core.context.SecurityContextHolder;
32
33 /**
34  * Define the ClampTimer and CleanupTask, to clear up the Spring Authenticataion info when time is up.
35  */
36
37 public class ClampTimer {
38     protected static final EELFLogger logger          = EELFManager.getInstance().getLogger(ClampTimer.class);
39     Timer timer;
40
41     public ClampTimer(int seconds) {
42         timer = new Timer();
43         timer.schedule(new CleanupTask(), seconds*1000L);
44     }
45
46     class CleanupTask extends TimerTask {
47         public void run() {
48             logger.debug("Time is up, clear the Spring authenticataion settings");
49             //Clear up the spring authentication
50             SecurityContextHolder.getContext().setAuthentication(null);
51             //Terminate the timer thread
52             timer.cancel(); 
53         }
54     }
55 }