aboutsummaryrefslogtreecommitdiffstats
path: root/src/main
diff options
context:
space:
mode:
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2017-08-29 04:29:11 -0700
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>2017-08-29 04:29:11 -0700
commitc55a0d2b6c8bbbc789c687f503cf64322e897305 (patch)
tree54f84de8526d37fe72b52af927445f54c477693f /src/main
parentb339fbb09781e0761bec61ad37126d6241133d70 (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.java9
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 e0d10097..7ec2f20a 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;
+ }
+
}