From: Guangrong Fu Date: Tue, 15 Aug 2017 05:52:30 +0000 (+0800) Subject: Add a new entity for message publishing X-Git-Tag: v1.0.0~52 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=holmes%2Fcommon.git;a=commitdiff_plain;h=cfa9dcbea204246094f898748df4ee35d2c02b29 Add a new entity for message publishing Add a new message entity. Change-Id: Idb2723b9a8de860fd00b04e9501a9b42483e312f Issue-ID: HOLMES-30 Signed-off-by: Guangrong Fu --- 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 aai = new HashMap<>(); + + public static enum EVENT_STATUS { + ONSET, ABATED; + + @Override + public String toString(){ + return this.name(); + } + } +}