try {
parsedQuery = SearchCommonUtil.parseQueryString(queryString);
} catch (final IllegalStateException illState) {
logger.error("IllegalStateException on find operation");
logger.warn("IllegalStateException on find operation", illState);
throw new MyConflictException(illState);
}
final Page<T> resultPage = searchPaginated(page, size, parsedQuery.toArray(new ImmutableTriple[parsedQuery.size()]));
return Lists.newArrayList(resultPage.getContent());
}