Code Review
/
sdc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f7a181e5e6f1079de658cc602712ba3b63f7438e
[sdc.git]
/
1
package org.openecomp.sdc.notification.dtos;
2
3
import java.util.Map;
4
5
public interface Event {
6
7
String getEventType();
8
9
String getOriginatorId();
10
11
Map<String, Object> getAttributes();
12
13
String getEntityId();
14
}