Changes in preparation for the m2 model
[policy/models.git] / models-interactions / model-impl / events / src / main / java / org / onap / policy / controlloop / ControlLoopNotification.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 java.io.Serializable;
25 import java.time.ZoneOffset;
26 import java.time.ZonedDateTime;
27 import java.util.LinkedList;
28 import java.util.List;
29 import java.util.UUID;
30 import lombok.Getter;
31 import lombok.Setter;
32
33 @Getter
34 @Setter
35 public abstract class ControlLoopNotification implements Serializable {
36
37     private static final long serialVersionUID = 7538596984567127915L;
38
39     private String closedLoopControlName;
40     private String version = "1.0.2";
41     private UUID requestId;
42     private String closedLoopEventClient;
43     private String targetType;
44     private String target;
45     private String from;
46     private String policyScope;
47     private String policyName;
48     private String policyVersion;
49     private ControlLoopNotificationType notification;
50     private String message;
51     private ZonedDateTime notificationTime = ZonedDateTime.now(ZoneOffset.UTC);
52     private Integer opsClTimer;
53     private List<ControlLoopOperation> history = new LinkedList<>();
54
55     public ControlLoopNotification() {
56
57     }
58
59     /**
60      * Construct an instance.
61      *
62      * @param event the event
63      */
64     public ControlLoopNotification(ControlLoopEvent event) {
65         if (event == null) {
66             return;
67         }
68
69         this.setClosedLoopControlName(event.getClosedLoopControlName());
70         this.setRequestId(event.getRequestId());
71         this.setClosedLoopEventClient(event.getClosedLoopEventClient());
72         this.setTargetType(event.getTargetType());
73         this.setTarget(event.getTarget());
74     }
75 }