From c55a0d2b6c8bbbc789c687f503cf64322e897305 Mon Sep 17 00:00:00 2001 From: "Determe, Sebastien (sd378r)" Date: Tue, 29 Aug 2017 04:29:11 -0700 Subject: Add missing the eventName Add a new field for AlarmCondition (EventName) + getter and setter Change-Id: I825cc57ca65caa49de20cfcf4f8d6849f61de99e Issue-Id: CLAMP-43 Signed-off-by: Determe, Sebastien (sd378r) --- src/main/java/org/onap/clamp/clds/model/CldsAlarmCondition.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/java/org/onap/clamp/clds/model/CldsAlarmCondition.java b/src/main/java/org/onap/clamp/clds/model/CldsAlarmCondition.java index e0d10097b..7ec2f20a2 100644 --- a/src/main/java/org/onap/clamp/clds/model/CldsAlarmCondition.java +++ b/src/main/java/org/onap/clamp/clds/model/CldsAlarmCondition.java @@ -31,6 +31,7 @@ public class CldsAlarmCondition implements Serializable { private String eventSourceType; private String alarmConditionKey; private String severity; + private String eventName; public String getEventSourceType() { return eventSourceType; @@ -56,4 +57,12 @@ public class CldsAlarmCondition implements Serializable { this.alarmConditionKey = alarmConditionKey; } + public String getEventName() { + return eventName; + } + + public void setEventName(String eventName) { + this.eventName = eventName; + } + } -- cgit 1.2.3-korg