Initial OpenECOMP policy/engine commit
[policy/engine.git] / ecomp-sdk-app / src / main / java / org / openecomp / portalapp / scheduler / Register.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.util.ArrayList;
23 import java.util.List;
24
25 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
26 import org.openecomp.portalsdk.core.scheduler.Registerable;
27 import org.openecomp.portalsdk.core.util.SystemProperties;
28 import org.quartz.Trigger;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.context.annotation.DependsOn;
31 import org.springframework.stereotype.Component;
32
33 @Component
34 @DependsOn({"logRegistry", "systemProperties"})
35 public class Register implements Registerable {
36
37         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(Register.class);
38
39
40         private List<Trigger> scheduleTriggers = new ArrayList<Trigger>();
41         Trigger trigger[] = new Trigger[1];
42
43         
44         @Autowired
45         private LogRegistry logRegistry;
46         
47
48         
49         @Override
50         public Trigger[] getTriggers() {
51                 return getScheduleTriggers().toArray(trigger);
52         }
53
54         @Override
55         public void registerTriggers() {
56                 // if the property value is not available; the cron will not be added and can be ignored. its safe to ignore the exceptions
57                 try {
58                         if(SystemProperties.getProperty(SystemProperties.LOG_CRON) != null)
59                                 getScheduleTriggers().add(logRegistry.getTrigger());
60                         
61                 } catch(IllegalStateException ies) {
62                         logger.info(EELFLoggerDelegate.debugLogger, ("Log Cron not available"));
63                 }
64                 
65                 
66         }
67         
68         
69         public List<Trigger> getScheduleTriggers() {
70                 return scheduleTriggers;
71         }
72
73         public void setScheduleTriggers(List<Trigger> scheduleTriggers) {
74                 this.scheduleTriggers = scheduleTriggers;
75         }
76         
77         
78
79         
80         
81
82 }