Package com.alfresco.content.models
Class RequestPagination
-
- All Implemented Interfaces:
@JsonClass(generateAdapter = true) public final class RequestPagination
-
-
Constructor Summary
Constructors Constructor Description RequestPagination(Integer maxItems, Integer skipCount)
-
Method Summary
Modifier and Type Method Description final IntegergetMaxItems()The maximum number of items to return in the query results final UnitsetMaxItems(@Json(name = "maxItems") Integer maxItems)The maximum number of items to return in the query results final IntegergetSkipCount()The number of items to skip from the start of the query set final UnitsetSkipCount(@Json(name = "skipCount") Integer skipCount)The number of items to skip from the start of the query set -
-
Method Detail
-
getMaxItems
final Integer getMaxItems()
The maximum number of items to return in the query results
-
setMaxItems
final Unit setMaxItems(@Json(name = "maxItems") Integer maxItems)
The maximum number of items to return in the query results
-
getSkipCount
final Integer getSkipCount()
The number of items to skip from the start of the query set
-
setSkipCount
final Unit setSkipCount(@Json(name = "skipCount") Integer skipCount)
The number of items to skip from the start of the query set
-
-
-
-