Package-level declarations
Types
Link copied to clipboard
class DefaultFilterRepository<T : Any, ID : Serializable>(entityInformation: JpaEntityInformation<T, ID>, entityManager: EntityManager) : SimpleJpaRepository<T, ID> , FilterRepository<T, ID>
Represents the default implementation of the FilterRepository interface.
Link copied to clipboard
Interface for filter repositories that extend JpaRepository. This interface provides a method for filtering entities. Use this interface as a base interface for your repositories that need to filter entities.
Link copied to clipboard
object PersistenceUtils
This utility class provides methods for working with persistence-related operations, such as retrieving entity fields, finding entity types, determining attribute types, and performing other common tasks related to persistence.