summaryrefslogtreecommitdiffstats
path: root/holmes-actions/src
diff options
context:
space:
mode:
authorGuangrong Fu <fu.guangrong@zte.com.cn>2017-08-15 13:52:30 +0800
committerGuangrong Fu <fu.guangrong@zte.com.cn>2017-08-15 14:07:59 +0800
commitcfa9dcbea204246094f898748df4ee35d2c02b29 (patch)
tree11e1232daaf0f6d50e26007e498f672a4aeddd46 /holmes-actions/src
parent6d111823005ae5e6ec46f8d5e2e0a02619a80635 (diff)
Add a new entity for message publishing
Add a new message entity. Change-Id: Idb2723b9a8de860fd00b04e9501a9b42483e312f Issue-ID: HOLMES-30 Signed-off-by: Guangrong Fu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'holmes-actions/src')
-rw-r--r--holmes-actions/src/main/java/org/onap/holmes/common/dmaap/entity/PolicyMsg.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/holmes-actions/src/main/java/org/onap/holmes/common/dmaap/entity/PolicyMsg.java b/holmes-actions/src/main/java/org/onap/holmes/common/dmaap/entity/PolicyMsg.java
new file mode 100644
index 0000000..0c3078b
--- /dev/null
+++ b/holmes-actions/src/main/java/org/onap/holmes/common/dmaap/entity/PolicyMsg.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2017 ZTE Corporation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.holmes.common.dmaap.entity;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.HashMap;
+import java.util.Map;
+import lombok.Getter;
+import lombok.Setter;
+
+@Getter
+@Setter
+public class PolicyMsg {
+
+ private String version = "1.0.2";
+ private String closedLoopControlName;
+ private String requestID;
+ private EVENT_STATUS closedLoopEventStatus = EVENT_STATUS.ONSET;
+ private long closedLoopAlarmStart;
+ private long closedLoopAlarmEnd;
+ private String closedLoopEventClient;
+ private String policyVersion;
+ private String policyName;
+ private String policyScope;
+ private String from = "HOLMES";
+ @JsonProperty(value = "target_type")
+ private String targetType = "VM";
+ private String target;
+ private Map<String, String> aai = new HashMap<>();
+
+ public static enum EVENT_STATUS {
+ ONSET, ABATED;
+
+ @Override
+ public String toString(){
+ return this.name();
+ }
+ }
+}