summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-api/src/main/java/org/openecomp/sdc/notification/services/SubscriptionService.java
blob: 98cd458ca2c473c82e26a38bd3f9b121d447c7ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openecomp.sdc.notification.services;

import java.util.Set;

/**
 * @author avrahamg
 * @since July 09, 2017
 */
public interface SubscriptionService {
    void subscribe(String ownerId, String entityId);

    void unsubscribe(String ownerId, String entityId);

    Set<String> getSubscribers(String entityId);
}