diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-08-29 04:29:11 -0700 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-08-29 04:29:11 -0700 |
commit | c55a0d2b6c8bbbc789c687f503cf64322e897305 (patch) | |
tree | 54f84de8526d37fe72b52af927445f54c477693f /src/main | |
parent | b339fbb09781e0761bec61ad37126d6241133d70 (diff) |
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) <sd378r@intl.att.com>
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/onap/clamp/clds/model/CldsAlarmCondition.java | 9 |
1 files changed, 9 insertions, 0 deletions
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; + } + } |