Class AbstractSpecificationInterceptor<T,R>

java.lang.Object
io.micronaut.data.runtime.intercept.AbstractQueryInterceptor<T,R>
io.micronaut.data.hibernate6.jpa.repository.intercept.AbstractSpecificationInterceptor<T,R>
Type Parameters:
T - The declaring type
R - The return type
All Implemented Interfaces:
DataInterceptor<T,R>
Direct Known Subclasses:
CountSpecificationInterceptor, FindAllSpecificationInterceptor, FindOneSpecificationInterceptor, FindPageSpecificationInterceptor

public abstract class AbstractSpecificationInterceptor<T,R> extends AbstractQueryInterceptor<T,R>
Abstract specification interceptor.
Since:
3.1
Author:
Denis Stepanov
  • Constructor Details

    • AbstractSpecificationInterceptor

      protected AbstractSpecificationInterceptor(RepositoryOperations operations)
      Default constructor.
      Parameters:
      operations - The operations
  • Method Details

    • getSpecification

      protected Specification getSpecification(io.micronaut.aop.MethodInvocationContext<?,?> context)
      Find Specification in context.
      Parameters:
      context - The context
      Returns:
      found specification
    • getOrders

      protected final List<jakarta.persistence.criteria.Order> getOrders(Sort sort, jakarta.persistence.criteria.Root<?> root, jakarta.persistence.criteria.CriteriaBuilder cb)