[PORTAL-16 PORTAL-18] Widget ms; staging
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / config / NotificationCleanupConfig.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalapp.config;
21
22 import java.util.Timer;
23 import java.util.TimerTask;
24
25 import javax.annotation.PostConstruct;
26
27 import org.springframework.beans.BeansException;
28 import org.springframework.context.ApplicationContext;
29 import org.springframework.context.ApplicationContextAware;
30 import org.springframework.context.annotation.Bean;
31 import org.springframework.context.annotation.Configuration;
32
33 @Configuration
34 public class NotificationCleanupConfig implements ApplicationContextAware {
35         
36         // Once every 10 minutes should be adequate
37         public final static int CLEANUP_PERIOD_MINUTES = 10;
38         
39         private static ApplicationContext applicationContext;
40
41         public void setApplicationContext(ApplicationContext context) throws BeansException {
42                 applicationContext = context;
43         }
44
45         public static ApplicationContext getApplicationContext() {
46                 return applicationContext;
47
48         }
49
50         @PostConstruct
51         public void StartSchedular() {
52                 TimerTask task = new NotificationCleanup();
53                 Timer timer = new Timer();
54                 timer.schedule(task, 1000, CLEANUP_PERIOD_MINUTES * 60 * 1000);
55         }
56
57         @Bean
58         public NotificationCleanupConfig getConfig() {
59                 return new NotificationCleanupConfig();
60         }
61
62 }