My prepared list is counting two but returning 1 and the other null when getInstances is called
So it is looking more like ... well not sure yet public void prepare(int startIndex, int endIndex, List<SortConstraint> sortConstraints) { this.startIndex = startIndex; preparedResults = persistenceService.getInstances(entityType, startIndex, (endIndex - startIndex) + 1); } public Object getRowValue(int index) { return preparedResults.get(index - startIndex); }