6955d908709bbfa379930de68d25952e609ed58c
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / dmaap / entity / PolicyMsg.java
1 /*\r
2  * Copyright 2017 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.fasterxml.jackson.annotation.JsonProperty;\r
20 import java.util.HashMap;\r
21 import java.util.Map;\r
22 import lombok.Getter;\r
23 import lombok.Setter;\r
24 \r
25 @Getter\r
26 @Setter\r
27 public class PolicyMsg {\r
28 \r
29     private String version = "1.0.2";\r
30     private String closedLoopControlName;\r
31     private String requestID;\r
32     private EVENT_STATUS closedLoopEventStatus = EVENT_STATUS.ONSET;\r
33     private long closedLoopAlarmStart;\r
34     private long closedLoopAlarmEnd;\r
35     private String closedLoopEventClient = "DCAE.HolmesInstance";\r
36     private String policyVersion;\r
37     private String policyName;\r
38     private String policyScope;\r
39     private String from = "DCAE";\r
40     @JsonProperty(value = "target_type")\r
41     private String targetType = "VM";\r
42     private String target;\r
43     @JsonProperty(value = "AAI")\r
44     private Map<String, Object> aai = new HashMap<>();\r
45 \r
46     public static enum EVENT_STATUS {\r
47         ONSET, ABATED;\r
48 \r
49         @Override\r
50         public String toString(){\r
51             return this.name();\r
52         }\r
53     }\r
54 }\r