Class AutoDeleteQuery.AutoPostDeleteContext<E>

Type Parameters:
E - the entity type
All Implemented Interfaces:
PostDeleteContext<E>
Enclosing class:
AutoDeleteQuery<ENTITY>

protected static class AutoDeleteQuery.AutoPostDeleteContext<E> extends AbstractPostDeleteContext<E>
Context class for post-delete operations.
  • Constructor Details

    • AutoPostDeleteContext

      public AutoPostDeleteContext(EntityType<E> entityType, Method method, Config config, ReturningProperties returningProperties)
      Creates a new context for post-delete operations.
      Parameters:
      entityType - the entity type
      method - the method
      config - the configuration
      returningProperties - the properties to be returned
  • Method Details

    • getReturningProperties

      public ReturningProperties getReturningProperties()
      Returns the returning properties configuration for this delete operation.

      Returning properties specify which columns should be returned by the database after a delete operation, typically used with the RETURNING clause in SQL.

      Returns:
      the properties to be returned from the DELETE operation
      See Also: