001package dk.netarkivet.harvester.webinterface.servlet;
002
003import java.io.IOException;
004
005public interface Pageable {
006
007    public long getIndexSize();
008
009    public long getLastIndexed();
010
011    public byte[] readPage(long page, long itemsPerPage, boolean descending) throws IOException;
012
013}