com.github.paginationspring.service.PaginationService 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.service;
import java.util.List;
import com.github.paginationspring.bo.BoPaginationColumn;
import com.github.paginationspring.bo.BoPaginationParam;
import com.github.paginationspring.bo.BoPaginationResult;
public interface PaginationService {
public BoPaginationResult loadBoPaginationResult(P pparam) throws Exception;
public void assignColumnsDefinition(final List columns) throws Exception;
}