All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.senseidb.search.client.json.req.Paging Maven / Gradle / Ivy

package com.senseidb.search.client.json.req;

/**
 * Represents result pagination.
 * Contains :
    - the number of search results to return
      the starting offset of search results
 */
public class Paging {
    /**
     * the number of search results to return

     */
    private int count;
    /**
     * the starting offset of search results

     */
    private int offset;
    public Paging() {
        // TODO Auto-generated constructor stub
    }
    public Paging(int count, int offset) {
        super();
        this.count = count;
        this.offset = offset;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy