Code Review
/
sdc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b62f7b53e11a2901dee74bf6abfd757a93d97735
[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
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
}