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