Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / java / org / openecomp / portalapp / scheduler / LogRegistry.java
1 /*-
2  * ================================================================================
3  * eCOMP Portal SDK
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.scheduler;
21
22 import java.text.ParseException;
23 import java.util.HashMap;
24 import java.util.Map;
25
26 import org.openecomp.portalsdk.core.scheduler.CronRegistry;
27 import org.openecomp.portalsdk.core.util.SystemProperties;
28 import org.springframework.context.annotation.DependsOn;
29 import org.springframework.scheduling.quartz.CronTriggerFactoryBean;
30 import org.springframework.scheduling.quartz.JobDetailFactoryBean;
31 import org.springframework.stereotype.Component;
32
33 @Component
34 @DependsOn({ "systemProperties" })
35 public class LogRegistry extends CronRegistry {
36
37         private static final String groupName = "AppGroup";
38         private static final String jobName = "LogJob";
39         private static final String triggerName = "LogTrigger";
40
41         // @Autowired
42         // private SystemProperties systemProperties;
43
44         // @Bean
45         public JobDetailFactoryBean jobDetailFactoryBean() {
46                 Map<String, Object> map = new HashMap<String, Object>();
47                 map.put("units", "bytes");
48                 return jobDetailFactoryBean(groupName, jobName, LogJob.class, map);
49         }
50
51         // @Bean
52         public CronTriggerFactoryBean cronTriggerFactoryBean() throws ParseException {
53                 // "0 * * * * ? *
54                 return cronTriggerFactoryBean(groupName, triggerName, SystemProperties.getProperty(SystemProperties.LOG_CRON));
55         }
56
57 }