public IndexSource(IndexResponseV2 indexResponse)
{
entryList = new ArrayList<IndexEntry>();
for (com.basho.riak.client.http.response.IndexEntry entry : indexResponse.getEntries())
{
entryList.add(new IndexEntry(entry.getIndexValue(), entry.getObjectKey()));
}
continuation = indexResponse.getContinuation();
iterator = entryList.iterator();
}