Interface QueryBuilderInterceptor.SelectionInterceptor
- Enclosing interface:
QueryBuilderInterceptor
public static interface QueryBuilderInterceptor.SelectionInterceptor
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
static interface
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Called before the query is executed.void
Called after the query was executed.
-
Method Details
-
beforeQueryExecution
Called before the query is executed. The givenQueryBuilderInterceptor.SelectionInterceptor.SelectionData
instance allows adding additional query paths that will be queried from the database and will be available whenhandleQueryResults(QueryResult)
is called. -
handleQueryResults
Called after the query was executed.- Parameters:
queryResult
- an instance ofQueryBuilderInterceptor.SelectionInterceptor.QueryResult
which allows access to the results of the query
-