com.github.paginationspring.dao.PaginationDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pagination Show documentation
Show all versions of pagination Show documentation
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;
}