1620569ec58b5ed5bd614be3a8888c31b5654b94
[sdc.git] /
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 }