migrate model-impl from drools-applications
[policy/models.git] / models-interactions / model-impl / events / src / main / java / org / onap / policy / controlloop / VirtualControlLoopEvent.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * controlloop
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop;
23
24 import com.google.gson.annotations.SerializedName;
25
26 import java.time.Instant;
27 import java.util.HashMap;
28 import java.util.Map;
29
30 public class VirtualControlLoopEvent extends ControlLoopEvent {
31
32     private static final long serialVersionUID = -5752405682246066226L;
33     
34     @SerializedName("closedLoopAlarmStart")
35     private Instant closedLoopAlarmStart;
36     
37     @SerializedName("closedLoopAlarmEnd")
38     private Instant closedLoopAlarmEnd;
39     
40     @SerializedName("AAI")
41     private Map<String, String> aai = new HashMap<>();
42
43     public VirtualControlLoopEvent() {}
44
45
46     /**
47      * Construct an instance from an existing instance.
48      * 
49      * @param event the existing instance
50      */
51     public VirtualControlLoopEvent(VirtualControlLoopEvent event) {
52         super(event);
53         if (event == null) {
54             return;
55         }
56         if (event.aai != null) {
57             this.aai = new HashMap<>(event.aai);
58         }
59         this.closedLoopAlarmStart = event.closedLoopAlarmStart;
60         this.closedLoopAlarmEnd = event.closedLoopAlarmEnd;
61     }
62
63     public Instant getClosedLoopAlarmStart() {
64         return closedLoopAlarmStart;
65     }
66
67     public void setClosedLoopAlarmStart(Instant closedLoopAlarmStart) {
68         this.closedLoopAlarmStart = closedLoopAlarmStart;
69     }
70
71     public Instant getClosedLoopAlarmEnd() {
72         return closedLoopAlarmEnd;
73     }
74
75     public void setClosedLoopAlarmEnd(Instant closedLoopAlarmEnd) {
76         this.closedLoopAlarmEnd = closedLoopAlarmEnd;
77     }
78
79     public Map<String, String> getAai() {
80         return aai;
81     }
82
83     public void setAai(Map<String, String> aai) {
84         this.aai = aai;
85     }
86 }