summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-api/src/main/java/org/openecomp/sdc/notification/dtos/NotificationsStatus.java
blob: 1620569ec58b5ed5bd614be3a8888c31b5654b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.openecomp.sdc.notification.dtos;

import org.openecomp.sdc.notification.dao.types.NotificationEntity;

import java.util.List;
import java.util.UUID;

/**
 * @author Avrahamg
 * @since June 26, 2017
 */
public interface NotificationsStatus {

  List<NotificationEntity> getNotifications();

  List<UUID> getNewEntries();

  UUID getLastScanned();

  UUID getEndOfPage();

  long getNumOfNotSeenNotifications();

}