001package net.sf.jkniv.whinstone.couchdb; 002 003import java.util.List; 004 005public interface CouchDbResult 006{ 007 Long getTotalRows(); 008 009 Long getOffset(); 010 011 List<?> getRows(); 012 013 String getBookmark(); 014 015 String getWarning(); 016 017 ExecutionStats getExecutionStats(); 018}