Uses of Interface
org.autumnframework.service.jpa.identifiable.JpaIdentifiable
Packages that use JpaIdentifiable
Package
Description
-
Uses of JpaIdentifiable in org.autumnframework.service.jpa.entities
Subinterfaces of JpaIdentifiable in org.autumnframework.service.jpa.entitiesClasses in org.autumnframework.service.jpa.entities that implement JpaIdentifiableModifier and TypeClassDescriptionclassProvides a base superclass for entities which should have auditable capabilities, providingclassProvides a base superclass for entities which should have auditable capabilities, providing -
Uses of JpaIdentifiable in org.autumnframework.service.jpa.identifiable
Subinterfaces of JpaIdentifiable in org.autumnframework.service.jpa.identifiable -
Uses of JpaIdentifiable in org.autumnframework.service.jpa.listener
Classes in org.autumnframework.service.jpa.listener with type parameters of type JpaIdentifiableModifier and TypeInterfaceDescriptioninterfaceOnJpaCreateListener<T extends JpaIdentifiable>Bxd specific Jpa implementation ofOnCreateListenerinterfaceOnJpaDeleteListener<T extends JpaIdentifiable>Bxd specific Jpa implementation ofOnDeleteListenerinterfaceOnJpaUpdateListener<T extends JpaIdentifiable>Bxd specific Jpa implementation ofOnUpdateListener -
Uses of JpaIdentifiable in org.autumnframework.service.jpa.repositories
Classes in org.autumnframework.service.jpa.repositories with type parameters of type JpaIdentifiableModifier and TypeInterfaceDescriptioninterfaceJpaRepository<T extends JpaIdentifiable>A repository with standard JpaRepository JpaSpecificationExecutor support and Long id usage. -
Uses of JpaIdentifiable in org.autumnframework.service.jpa.services
Classes in org.autumnframework.service.jpa.services with type parameters of type JpaIdentifiableModifier and TypeInterfaceDescriptioninterfaceCRUDService<T extends JpaIdentifiable>A convenience CRUD service, which combines the essential CRUD servicesinterfaceFullService<T extends JpaIdentifiable>A convenience full service, which can be used to include all the standard services that we have -
Uses of JpaIdentifiable in org.autumnframework.service.jpa.services.elementary
Classes in org.autumnframework.service.jpa.services.elementary with type parameters of type JpaIdentifiableModifier and TypeInterfaceDescriptioninterfaceCreateService<T extends JpaIdentifiable>Our standard CreateService which uses a repository that uses Long id'sinterfaceDeleteByIdService<T extends JpaIdentifiable>Our standard delete service which uses a repository that uses Long id'sinterfaceReadFindAllService<T extends JpaIdentifiable>Our standard find all service which uses a repository that uses Long id'sinterfaceReadFindByIdService<T extends JpaIdentifiable>Our standard find by id's service which uses a repository that uses Long id'sinterfaceReadFindByIdsService<T extends JpaIdentifiable>Our standard find by id's service which uses a repository that uses Long id'sinterfaceUpdateService<T extends JpaIdentifiable>Our standard update service which uses which uses a repository that uses Long id's -
Uses of JpaIdentifiable in org.autumnframework.service.jpa.services.implementation
Classes in org.autumnframework.service.jpa.services.implementation with type parameters of type JpaIdentifiableModifier and TypeClassDescriptionclassStandardService<T extends JpaIdentifiable,R extends JpaRepository<T>>