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 java.io.Serializable;
24 import java.util.UUID;
26 public abstract class ControlLoopEvent implements Serializable {
28 private static final long serialVersionUID = 2391252138583119195L;
30 private String closedLoopControlName;
31 private String version = "1.0.2";
32 private UUID requestId;
33 private String closedLoopEventClient;
34 private ControlLoopTargetType targetType;
35 private String target;
37 private String policyScope;
38 private String policyName;
39 private String policyVersion;
40 private ControlLoopEventStatus closedLoopEventStatus;
42 public ControlLoopEvent() {
47 * Construct an instace from an existing instance.
49 * @param event the existing instance
51 public ControlLoopEvent(ControlLoopEvent event) {
55 this.closedLoopControlName = event.closedLoopControlName;
56 this.requestId = event.requestId;
57 this.closedLoopEventClient = event.closedLoopEventClient;
58 this.targetType = event.targetType;
59 this.target = event.target;
60 this.from = event.from;
61 this.policyScope = event.policyScope;
62 this.policyName = event.policyName;
63 this.policyVersion = event.policyVersion;
64 this.closedLoopEventStatus = event.closedLoopEventStatus;
67 public boolean isEventStatusValid() {
68 return this.closedLoopEventStatus != null;
71 public String getClosedLoopControlName() {
72 return closedLoopControlName;
75 public void setClosedLoopControlName(String closedLoopControlName) {
76 this.closedLoopControlName = closedLoopControlName;
79 public String getVersion() {
83 public void setVersion(String version) {
84 this.version = version;
87 public UUID getRequestId() {
91 public void setRequestId(UUID requestId) {
92 this.requestId = requestId;
95 public String getClosedLoopEventClient() {
96 return closedLoopEventClient;
99 public void setClosedLoopEventClient(String closedLoopEventClient) {
100 this.closedLoopEventClient = closedLoopEventClient;
103 public ControlLoopTargetType getTargetType() {
107 public void setTargetType(ControlLoopTargetType targetType) {
108 this.targetType = targetType;
111 public String getTarget() {
115 public void setTarget(String target) {
116 this.target = target;
119 public String getFrom() {
123 public void setFrom(String from) {
127 public String getPolicyScope() {
131 public void setPolicyScope(String policyScope) {
132 this.policyScope = policyScope;
135 public String getPolicyName() {
139 public void setPolicyName(String policyName) {
140 this.policyName = policyName;
143 public String getPolicyVersion() {
144 return policyVersion;
147 public void setPolicyVersion(String policyVersion) {
148 this.policyVersion = policyVersion;
151 public ControlLoopEventStatus getClosedLoopEventStatus() {
152 return closedLoopEventStatus;
155 public void setClosedLoopEventStatus(ControlLoopEventStatus closedLoopEventStatus) {
156 this.closedLoopEventStatus = closedLoopEventStatus;