for(Map<String, Object> insertValue : values) {
om.insert(objectType, insertValue);
}
// Get back the first 10
List<Map<String, Object>> first10 = om.scanTableWithStartToken(objectType, Long.MIN_VALUE, Long.MAX_VALUE, 10l);
assertEquals(10, first10.size());
// Get back the rest, starting with the last id in the first set
List<Map<String, Object>> next10 = om.scanTableWithStartId(objectType, String.valueOf(first10.get(first10.size()-1).get("id")), Long.MAX_VALUE, 100l);
assertEquals(10, next10.size());