int totalResultSetSize = 0;
do {
// Get content by statement.
ContentPage page = contentService.getContentByStatementAndCustomTargetingValue(
statementBuilder.toStatement(), categoryCustomTargetingValueId);
if (page.getResults() != null) {
totalResultSetSize = page.getTotalResultSetSize();
int i = page.getStartIndex();
for (Content content : page.getResults()) {