137138139140141142143144145
} @Override public QueryResult<T> maxResults(int max) { context.addJpaQueryPostProcessor(new MaxResultPostProcessor(max)); pageSize = max; return this; }
136137138139140141142143144