7a1596eb9575f923d7e809d20445301525976519
[sdc.git] /
1 package org.openecomp.sdc.notification.services;
2
3 import org.openecomp.sdc.notification.dtos.Event;
4
5 /**
6  * @author avrahamg
7  * @since July 09, 2017
8  */
9 public interface NotificationPropagationManager {
10     void notifySubscribers(Event event, String ... excludedSubscribers);
11     void directNotification(Event event, String destinationId);
12 }