ec4fc47dd3c5b556c453b790366da661f63a5eb9
[policy/drools-applications.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * controlloop
4  * ================================================================================
5  * Copyright (C) 2017-2018 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.onap.policy.controlloop;
22
23 import com.google.gson.annotations.SerializedName;
24
25 import java.time.Instant;
26 import java.util.HashMap;
27 import java.util.Map;
28
29 public class VirtualControlLoopEvent extends ControlLoopEvent {
30
31     private static final long serialVersionUID = -5752405682246066226L;
32     private Instant closedLoopAlarmStart;
33     private Instant closedLoopAlarmEnd;
34     @SerializedName("AAI")
35     private Map<String, String> aai = new HashMap<>();
36
37     public VirtualControlLoopEvent() {}
38
39
40     /**
41      * Construct an instance from an existing instance.
42      * 
43      * @param event the existing instance
44      */
45     public VirtualControlLoopEvent(VirtualControlLoopEvent event) {
46         super(event);
47         if (event == null) {
48             return;
49         }
50         if (event.aai != null) {
51             this.aai = new HashMap<>(event.aai);
52         }
53         this.closedLoopAlarmStart = event.closedLoopAlarmStart;
54         this.closedLoopAlarmEnd = event.closedLoopAlarmEnd;
55     }
56
57     public Instant getClosedLoopAlarmStart() {
58         return closedLoopAlarmStart;
59     }
60
61     public void setClosedLoopAlarmStart(Instant closedLoopAlarmStart) {
62         this.closedLoopAlarmStart = closedLoopAlarmStart;
63     }
64
65     public Instant getClosedLoopAlarmEnd() {
66         return closedLoopAlarmEnd;
67     }
68
69     public void setClosedLoopAlarmEnd(Instant closedLoopAlarmEnd) {
70         this.closedLoopAlarmEnd = closedLoopAlarmEnd;
71     }
72
73     public Map<String, String> getAai() {
74         return aai;
75     }
76
77     public void setAai(Map<String, String> aai) {
78         this.aai = aai;
79     }
80 }