Class PageableInfo

java.lang.Object
com.skava.model.responses.PageableInfo
All Implemented Interfaces:
Serializable

public class PageableInfo extends Object implements Serializable
This class defines the PageableInfo model which contains the pagination properties like page, size, count and totalCount.
Author:
Infosys Equinox
See Also:
  • Constructor Details

    • PageableInfo

      public PageableInfo(int page, int size, long count, long totalCount)
      Creates a new PageableInfo object.
      Parameters:
      page - Indicates the page number of the response.
      size - Indicates the maximum size of the page.
      count - The response holds the actual number of records.
      totalCount - Indicates the total records available for the request.