package org.openecomp.sdcrests.notifications.types; import java.util.ArrayList; import java.util.List; import java.util.UUID; /** * @author avrahamg * @since June 29, 2017 */ public class NotificationsStatusDto { private List notifications; private List newEntries = new ArrayList<>(); private UUID lastScanned; private UUID endOfPage; private long numOfNotSeenNotifications; public NotificationsStatusDto() { } public List getNotifications() { return notifications; } public void setNotifications( List notifications) { this.notifications = notifications; } public List getNewEntries() { return newEntries; } public void setNewEntries(List newEntries) { this.newEntries = newEntries; } public UUID getLastScanned() { return lastScanned; } public void setLastScanned(UUID lastScanned) { this.lastScanned = lastScanned; } public UUID getEndOfPage() { return endOfPage; } public void setEndOfPage(UUID endOfPage) { this.endOfPage = endOfPage; } public long getNumOfNotSeenNotifications() { return numOfNotSeenNotifications; } public void setNumOfNotSeenNotifications(long numOfNotSeenNotifications) { this.numOfNotSeenNotifications = numOfNotSeenNotifications; } }