Removed MSB Invocation During AAI Calling
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / dmaap / entity / PolicyMsg.java
1 /*\r
2  * Copyright 2017-2023 ZTE Corporation.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 package org.onap.holmes.common.dmaap.entity;\r
18 \r
19 import com.google.gson.annotations.SerializedName;\r
20 import lombok.Getter;\r
21 import lombok.Setter;\r
22 \r
23 import java.util.HashMap;\r
24 import java.util.Map;\r
25 \r
26 @Getter\r
27 @Setter\r
28 public class PolicyMsg {\r
29 \r
30     private String version = "1.0.2";\r
31     private String closedLoopControlName;\r
32     private String requestID;\r
33     private EVENT_STATUS closedLoopEventStatus = EVENT_STATUS.ONSET;\r
34     private long closedLoopAlarmStart;\r
35     private long closedLoopAlarmEnd;\r
36     private String closedLoopEventClient = "DCAE.HolmesInstance";\r
37     private String policyVersion;\r
38     private String policyName;\r
39     private String policyScope;\r
40     private String from = "DCAE";\r
41     @SerializedName(value = "target_type")\r
42     private String targetType = "VM";\r
43     private String target;\r
44     @SerializedName(value = "AAI")\r
45     private Map<String, Object> aai = new HashMap<>();\r
46 \r
47     public static enum EVENT_STATUS {\r
48         ONSET, ABATED;\r
49 \r
50         @Override\r
51         public String toString(){\r
52             return this.name();\r
53         }\r
54     }\r
55 }\r