|
|
|
@ -45,8 +45,8 @@ public abstract class Parameters<S extends Parameters<S, T>, T extends Parameter |
|
|
|
private static final String ALL_OR_NOTHING = String.format("Either use @%s " |
|
|
|
private static final String ALL_OR_NOTHING = String.format("Either use @%s " |
|
|
|
+ "on all parameters except %s and %s typed once, or none at all!", Param.class.getSimpleName(), |
|
|
|
+ "on all parameters except %s and %s typed once, or none at all!", Param.class.getSimpleName(), |
|
|
|
Pageable.class.getSimpleName(), Sort.class.getSimpleName()); |
|
|
|
Pageable.class.getSimpleName(), Sort.class.getSimpleName()); |
|
|
|
private static final ParameterNameDiscoverer PARAMETER_DISCOVERER = new DefaultParameterNameDiscoverer(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final ParameterNameDiscoverer PARAMETER_DISCOVERER = new DefaultParameterNameDiscoverer(); |
|
|
|
private final int pageableIndex; |
|
|
|
private final int pageableIndex; |
|
|
|
private final int sortIndex; |
|
|
|
private final int sortIndex; |
|
|
|
private final List<T> parameters; |
|
|
|
private final List<T> parameters; |
|
|
|
|