Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-sdc-notification-lib / openecomp-sdc-notification-api / src / main / java / org / openecomp / sdc / notification / dtos / NotificationsStatus.java
1 package org.openecomp.sdc.notification.dtos;
2
3 import org.openecomp.sdc.notification.dao.types.NotificationEntity;
4
5 import java.util.List;
6 import java.util.UUID;
7
8 /**
9  * @author Avrahamg
10  * @since June 26, 2017
11  */
12 public interface NotificationsStatus {
13
14   List<NotificationEntity> getNotifications();
15
16   List<UUID> getNewEntries();
17
18   UUID getLastScanned();
19
20   UUID getEndOfPage();
21
22   long getNumOfNotSeenNotifications();
23
24 }