aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-api/src/main/java/org/openecomp/sdc/notification/dtos/Event.java
blob: f7a181e5e6f1079de658cc602712ba3b63f7438e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdc.notification.dtos;

import java.util.Map;

public interface Event {

    String getEventType();

    String getOriginatorId();

    Map<String, Object> getAttributes();

    String getEntityId();
}