336db6496c788c606c0e3c918efe0a3a09e8cd06
[sdc.git] /
1 package org.openecomp.sdc.versioning.types;
2
3 /**
4  * @author avrahamg
5  * @since July 10, 2017
6  */
7 public enum NotificationEventTypes {
8     SUBMIT("submit"),
9     DELETE("delete"),
10     COMMIT("commit");
11
12     private String eventName;
13
14     NotificationEventTypes(String eventName) {
15         this.eventName = eventName;
16     }
17
18     public String getEventName() {
19         return eventName;
20     }
21 }