2  * ============LICENSE_START=======================================================
 
   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
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  22 package org.onap.policy.controlloop;
 
  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;
 
  35 public abstract class ControlLoopNotification implements Serializable {
 
  37     private static final long serialVersionUID = 7538596984567127915L;
 
  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;
 
  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<>();
 
  55     public ControlLoopNotification() {
 
  60      * Construct an instance.
 
  62      * @param event the event
 
  64     public ControlLoopNotification(ControlLoopEvent event) {
 
  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());