blob: 6a97fd97cebd8cf53b4e04eba4d1ca6ab8514b85 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.portalapp.scheduler;
24
25import java.util.ArrayList;
26import java.util.List;
27
28import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
29import org.onap.portalsdk.core.scheduler.Registerable;
30import org.onap.portalsdk.core.util.SystemProperties;
31import org.quartz.Trigger;
32import org.springframework.beans.factory.annotation.Autowired;
33import org.springframework.context.annotation.DependsOn;
34import org.springframework.stereotype.Component;
35
36@Component
37@DependsOn({ "logRegistry", "systemProperties" })
38public class Register implements Registerable {
39
40 private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(Register.class);
41
42 private List<Trigger> scheduleTriggers = new ArrayList<>();
43 Trigger[] trigger = new Trigger[1];
44
45 @Autowired
46 private LogRegistry logRegistry;
47
48 @Override
49 public Trigger[] getTriggers() {
50 return getScheduleTriggers().toArray(trigger);
51 }
52
53 @Override
54 public void registerTriggers() {
55 // if the property value is not available; the cron will not be added.
56 if (SystemProperties.containsProperty(SystemProperties.LOG_CRON)) {
57 logger.debug(EELFLoggerDelegate.debugLogger,
58 "Adding log registry for cron property {}", SystemProperties.getProperty(SystemProperties.LOG_CRON));
59 getScheduleTriggers().add(logRegistry.getTrigger());
60 }
61 }
62
63 public List<Trigger> getScheduleTriggers() {
64 return scheduleTriggers;
65 }
66
67 public void setScheduleTriggers(List<Trigger> scheduleTriggers) {
68 this.scheduleTriggers = scheduleTriggers;
69 }
70
71}