Smaller changes pre-merge

This commit is contained in:
Jonas Pöhler
2021-09-13 13:15:14 +02:00
parent 62712c976f
commit 0cfae9a13b
5 changed files with 2 additions and 16 deletions
@@ -51,14 +51,14 @@ public interface BeanFindController {
<T> BeanCollection<T> findMany(BeanQueryRequest<T> request);
/**
* Allows post processing of the find result.
* Allows post-processing of the find result.
*/
default <T> BeanCollection<T> postProcessMany(BeanQueryRequest<T> request, BeanCollection<T> result) {
return result;
}
/**
* Allows post processing of the find result.
* Allows post-processing of the find result.
*/
default <T> T postProcess(BeanQueryRequest<T> request, T result) {
return result;