Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-sdc-versioning-lib / openecomp-sdc-versioning-api / src / main / java / org / openecomp / sdc / versioning / types / NotificationEventTypes.java
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     COMMIT("commit");
10
11     private String eventName;
12
13     NotificationEventTypes(String eventName) {
14         this.eventName = eventName;
15     }
16
17     public String getEventName() {
18         return eventName;
19     }
20 }