2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.policy.controlloop;
23 import com.google.gson.annotations.SerializedName;
25 import java.time.Instant;
26 import java.util.HashMap;
29 public class VirtualControlLoopEvent extends ControlLoopEvent {
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<>();
37 public VirtualControlLoopEvent() {}
41 * Construct an instance from an existing instance.
43 * @param event the existing instance
45 public VirtualControlLoopEvent(VirtualControlLoopEvent event) {
50 if (event.aai != null) {
51 this.aai = new HashMap<>(event.aai);
53 this.closedLoopAlarmStart = event.closedLoopAlarmStart;
54 this.closedLoopAlarmEnd = event.closedLoopAlarmEnd;
57 public Instant getClosedLoopAlarmStart() {
58 return closedLoopAlarmStart;
61 public void setClosedLoopAlarmStart(Instant closedLoopAlarmStart) {
62 this.closedLoopAlarmStart = closedLoopAlarmStart;
65 public Instant getClosedLoopAlarmEnd() {
66 return closedLoopAlarmEnd;
69 public void setClosedLoopAlarmEnd(Instant closedLoopAlarmEnd) {
70 this.closedLoopAlarmEnd = closedLoopAlarmEnd;
73 public Map<String, String> getAai() {
77 public void setAai(Map<String, String> aai) {