DATACMNS-884 - Polishing.

Renamed PageableExecutionSupport to …Utils as …Support classes are usually empty adapter classes for interfaces and meant to be extended.
This commit is contained in:
Oliver Gierke
2016-07-19 15:03:16 +02:00
parent 29c86d74b3
commit 86c1086976
2 changed files with 21 additions and 15 deletions

View File

@@ -23,15 +23,15 @@ import org.springframework.data.domain.Pageable;
import org.springframework.util.Assert;
/**
* Support for query execution using {@link Pageable}. Using {@link PageableExecutionSupport} assumes that data queries
* Support for query execution using {@link Pageable}. Using {@link PageableExecutionUtils} assumes that data queries
* are cheaper than {@code COUNT} queries and so some cases can take advantage of optimizations.
*
* @author Mark Paluch
* @since 1.13
*/
public abstract class PageableExecutionSupport {
public abstract class PageableExecutionUtils {
private PageableExecutionSupport() {}
private PageableExecutionUtils() {}
/**
* Constructs a {@link Page} based on the given {@code content}, {@link Pageable} and {@link TotalSupplier} applying