Class DefaultAbstractFindPageInterceptor<T,R>
java.lang.Object
io.micronaut.data.runtime.intercept.AbstractQueryInterceptor<T,R>
io.micronaut.data.runtime.intercept.DefaultAbstractFindPageInterceptor<T,R>
- Type Parameters:
T
- The declaring typeR
- The paged type.
- All Implemented Interfaces:
DataInterceptor<T,
R>
- Direct Known Subclasses:
DefaultFindCursoredPageInterceptor
,DefaultFindPageInterceptor
An abstract base implementation of query interceptor for page interceptors
implementing
FindPageInterceptor
or
FindCursoredPageInterceptor
.- Since:
- 4.8.0
- Author:
- graemerocher
-
Field Summary
Fields inherited from class io.micronaut.data.runtime.intercept.AbstractQueryInterceptor
conversionService, operations, preparedQueryResolver
-
Constructor Summary
ModifierConstructorDescriptionprotected
DefaultAbstractFindPageInterceptor
(@NonNull RepositoryOperations datastore) Default constructor. -
Method Summary
Modifier and TypeMethodDescriptionintercept
(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<T, R> context) Intercepts a data method execution.Methods inherited from class io.micronaut.data.runtime.intercept.AbstractQueryInterceptor
convertOne, convertOne, count, findEntitiesParameter, findEntityParameter, getDeleteAllBatchOperation, getDeleteBatchOperation, getDeleteBatchOperation, getDeleteOperation, getDeleteReturningBatchOperation, getDeleteReturningOperation, getEntitiesParameter, getEntityParameter, getInsertBatchOperation, getInsertBatchOperation, getInsertOperation, getInsertOperation, getLimit, getOffset, getPageable, getPageableInRole, getPagedQuery, getParameterInRole, getParameterValueMap, getRequiredEntity, getRequiredParameterInRole, getRequiredRootEntity, getReturnType, getUpdateAllBatchOperation, getUpdateOperation, getUpdateOperation, instantiateEntity, isNullable, isNumber, prepareCountQuery, prepareQuery, validateNullArguments
-
Constructor Details
-
DefaultAbstractFindPageInterceptor
Default constructor.- Parameters:
datastore
- The operations
-
-
Method Details
-
intercept
public R intercept(RepositoryMethodKey methodKey, io.micronaut.aop.MethodInvocationContext<T, R> context) Description copied from interface:DataInterceptor
Intercepts a data method execution.- Parameters:
methodKey
- The method keycontext
- The context- Returns:
- The result
-