Added oparent to sdc main
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / notifications-rest / notifications-rest-types / src / main / java / org / openecomp / sdcrests / notifications / types / NotificationsStatusDto.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdcrests.notifications.types;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import java.util.UUID;
26
27 /**
28  * @author avrahamg
29  * @since June 29, 2017
30  */
31 public class NotificationsStatusDto {
32     private List<NotificationEntityDto> notifications;
33     private List<UUID> newEntries = new ArrayList<>();
34     private UUID lastScanned;
35     private UUID endOfPage;
36     private long numOfNotSeenNotifications;
37
38     public NotificationsStatusDto() {
39     }
40
41     public List<NotificationEntityDto> getNotifications() {
42         return notifications;
43     }
44
45     public void setNotifications(
46         List<NotificationEntityDto> notifications) {
47         this.notifications = notifications;
48     }
49
50     public List<UUID> getNewEntries() {
51         return newEntries;
52     }
53
54     public void setNewEntries(List<UUID> newEntries) {
55         this.newEntries = newEntries;
56     }
57
58     public UUID getLastScanned() {
59         return lastScanned;
60     }
61
62     public void setLastScanned(UUID lastScanned) {
63         this.lastScanned = lastScanned;
64     }
65
66     public UUID getEndOfPage() {
67         return endOfPage;
68     }
69
70     public void setEndOfPage(UUID endOfPage) {
71         this.endOfPage = endOfPage;
72     }
73
74     public long getNumOfNotSeenNotifications() {
75         return numOfNotSeenNotifications;
76     }
77
78     public void setNumOfNotSeenNotifications(long numOfNotSeenNotifications) {
79         this.numOfNotSeenNotifications = numOfNotSeenNotifications;
80     }
81 }