98cd458ca2c473c82e26a38bd3f9b121d447c7ce
[sdc.git] /
1 package org.openecomp.sdc.notification.services;
2
3 import java.util.Set;
4
5 /**
6  * @author avrahamg
7  * @since July 09, 2017
8  */
9 public interface SubscriptionService {
10     void subscribe(String ownerId, String entityId);
11
12     void unsubscribe(String ownerId, String entityId);
13
14     Set<String> getSubscribers(String entityId);
15 }