Skip to content

Commit 158ba74

Browse files
committed
#23 Add More Questions to PaginatedResult
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent 2c2f14e commit 158ba74

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/io/securecodebox/persistence/defectdojo/model/PaginatedResult.java

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
*/
1818
@Data
1919
public final class PaginatedResult<T extends Model> {
20+
/**
21+
* TODO: What does this count? The number of results in one page or the total number?
22+
*/
2023
@JsonProperty
2124
private int count;
2225

@@ -27,6 +30,9 @@ public final class PaginatedResult<T extends Model> {
2730
@JsonProperty
2831
private String next;
2932

33+
/**
34+
* TODO: What does this contain? I would expect a number for the previous page.
35+
*/
3036
@JsonProperty
3137
private String previous = "";
3238

0 commit comments

Comments
 (0)