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

com.github.paginationspring.dao.PaginationDao Maven / Gradle / Ivy

Go to download

An implementation of Pagination with Spring Framework that will provide full features of pagination, search option and column sorting.

The newest version!
package com.github.paginationspring.dao;

import java.util.List;

import com.github.paginationspring.bo.BoPaginationParam;

public interface PaginationDao {

    public int retrieveCountResult(P pparam) throws Exception;
    public List retrievePageResult(P pparam) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy