Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-sdc-notification-lib / openecomp-sdc-notification-api / src / main / java / org / openecomp / sdc / notification / dtos / Event.java
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 }