[VID-3] Setting docker image tag
[vid.git] / vid / src / main / java / org / openecomp / vid / scheduler / MyLoginsFeedRegistry.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.beans.factory.annotation.Autowired;
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 import org.openecomp.portalsdk.core.scheduler.CronRegistry;
34 import org.openecomp.portalsdk.core.util.SystemProperties;
35 import com.mchange.v2.c3p0.ComboPooledDataSource;
36
37 @Component
38 @DependsOn({ "dataSource", "systemProperties" })
39 public class MyLoginsFeedRegistry extends CronRegistry {
40
41         // @Autowired
42         // private SystemProperties systemProperties;
43
44         @Autowired
45         public MyLoginsFeedRegistry(ComboPooledDataSource dataSource) {
46                 super(dataSource);
47         }
48
49         private static final String groupName = "AppGroup";
50         private static final String jobName = "MyLoginsFeedJob";
51         private static final String triggerName = "MyLoginsFeedTrigger";
52
53         // @Bean
54         public JobDetailFactoryBean jobDetailFactoryBean() {
55                 Map<String, Object> map = new HashMap<String, Object>();
56                 map.put("dataSource", getDataSource());
57                 return jobDetailFactoryBean(groupName, jobName, MyLoginsFeedJob.class, map);
58         }
59
60         // @Bean
61         public CronTriggerFactoryBean cronTriggerFactoryBean() throws ParseException {
62                 // "0 * * * * ? *"
63                 return cronTriggerFactoryBean(groupName, triggerName,
64                                 SystemProperties.getProperty(SystemProperties.MYLOGINS_FEED_CRON));
65         }
66
67 }