d7fa048848c5e069edef1bcaa8e1424105e50789
[policy/drools-applications.git] / controlloop / src / main / java / org / openecomp / policy / controlloop / ControlLoopEvent.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * controlloop
4  * ================================================================================
5  * Copyright (C) 2017 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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20
21 package org.openecomp.policy.controlloop;
22
23 import java.io.Serializable;
24 import java.util.UUID;
25
26 public abstract class ControlLoopEvent implements Serializable {
27         
28         private static final long serialVersionUID = 2391252138583119195L;
29         
30         public String closedLoopControlName;
31         public String version = "1.0.2";
32         public UUID requestID;
33         public String closedLoopEventClient;
34         public ControlLoopTargetType target_type;
35         public String target;
36         public String from;
37         public String policyScope;
38         public String policyName;
39         public String policyVersion;
40         public ControlLoopEventStatus closedLoopEventStatus;
41         
42         public ControlLoopEvent() {
43                 
44         }
45         
46         public ControlLoopEvent(ControlLoopEvent event) {
47                 if (event == null) {
48                         return;
49                 }
50                 this.closedLoopControlName = event.closedLoopControlName;
51                 this.requestID = event.requestID;
52                 this.closedLoopEventClient = event.closedLoopEventClient;
53                 this.target_type = event.target_type;
54                 this.target = event.target;
55                 this.from = event.from;
56                 this.policyScope = event.policyScope;
57                 this.policyName = event.policyName;
58                 this.policyVersion = event.policyVersion;
59                 this.closedLoopEventStatus = event.closedLoopEventStatus;
60         }
61
62         public boolean  isEventStatusValid() {
63                 if (this.closedLoopEventStatus == null) {
64                         return false;
65                 }
66                 return true;
67         }
68
69 }