Add missing the eventName 87/9087/1
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>
Tue, 29 Aug 2017 11:29:11 +0000 (04:29 -0700)
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>
Tue, 29 Aug 2017 11:29:11 +0000 (04:29 -0700)
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>
src/main/java/org/onap/clamp/clds/model/CldsAlarmCondition.java

index e0d1009..7ec2f20 100644 (file)
@@ -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;
+       }
+
 }