use of org.commonjava.indy.core.model.DefaultPagination in project indy by Commonjava.
the class NfcController method getAllMissing.
public Pagination<NotFoundCacheDTO> getAllMissing(Page page) {
return new DefaultPagination<>(page, (handler) -> {
Map<Location, Set<String>> allMissing = ((AbstractNotFoundCache) cache).getAllMissing(page.getPageIndex(), page.getPageSize());
NotFoundCacheDTO dto = getNotFoundCacheDTO(allMissing);
return dto;
});
}
Aggregations