Class PolarisPaginationMeta
- java.lang.Object
-
- com.synopsys.integration.util.Stringable
-
- com.synopsys.integration.polaris.common.api.PolarisResponse
-
- com.synopsys.integration.polaris.common.api.PolarisPaginationMeta
-
- All Implemented Interfaces:
java.io.Serializable
public class PolarisPaginationMeta extends PolarisResponse
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PolarisPaginationMeta()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigDecimal
getLimit()
The maximum number of elements returned for this request.java.math.BigDecimal
getOffset()
The offset used for this request.java.math.BigDecimal
getTotal()
The total number of results matching the provided criteria, without regard to the provided offset or limit.void
setLimit(java.math.BigDecimal limit)
void
setOffset(java.math.BigDecimal offset)
void
setTotal(java.math.BigDecimal total)
-
Methods inherited from class com.synopsys.integration.polaris.common.api.PolarisResponse
getJson, setJson
-
-
-
-
Method Detail
-
getOffset
public java.math.BigDecimal getOffset()
The offset used for this request. If null, no offset was applied.- Returns:
- offset
-
setOffset
public void setOffset(java.math.BigDecimal offset)
-
getLimit
public java.math.BigDecimal getLimit()
The maximum number of elements returned for this request. If null, no limit was applied.- Returns:
- limit
-
setLimit
public void setLimit(java.math.BigDecimal limit)
-
getTotal
public java.math.BigDecimal getTotal()
The total number of results matching the provided criteria, without regard to the provided offset or limit.- Returns:
- total
-
setTotal
public void setTotal(java.math.BigDecimal total)
-
-