forked from intercom/intercom-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotificationCollection.java
More file actions
44 lines (33 loc) · 1.09 KB
/
Copy pathNotificationCollection.java
File metadata and controls
44 lines (33 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package io.intercom.api;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Iterator;
import java.util.List;
@SuppressWarnings("UnusedDeclaration")
@JsonIgnoreProperties(ignoreUnknown = true)
public class NotificationCollection extends TypedDataCollection<Notification> implements Iterator<Notification> {
protected TypedDataCollectionIterator<Notification> iterator;
public NotificationCollection() {
type = "notification.list";
iterator = new TypedDataCollectionIterator<Notification>(this);
}
@Override
public NotificationCollection nextPage() {
return fetchNextPage(NotificationCollection.class);
}
@SuppressWarnings("EmptyMethod")
@JsonProperty("notifications")
@Override
public List<Notification> getPage() {
return super.getPage();
}
public boolean hasNext() {
return iterator.hasNext();
}
public Notification next() {
return iterator.next();
}
public void remove() {
iterator.remove();
}
}