Uses of Interface
org.autumnframework.service.jpa.services.genericdefault.shared.GenericJpaGetRepositoryService
Packages that use GenericJpaGetRepositoryService
Package
Description
-
Uses of GenericJpaGetRepositoryService in org.autumnframework.service.jpa.services
Subinterfaces of GenericJpaGetRepositoryService in org.autumnframework.service.jpa.servicesModifier and TypeInterfaceDescriptioninterfaceApiCRUDService<T extends JpaApiIdentifiable>interfaceCRUDService<T extends JpaIdentifiable>A convenience CRUD service, which combines the essential CRUD servicesinterfaceFullApiService<T extends JpaApiIdentifiable>A convenience full service, which can be used to include all the standard services that we haveinterfaceFullService<T extends JpaIdentifiable>A convenience full service, which can be used to include all the standard services that we have -
Uses of GenericJpaGetRepositoryService in org.autumnframework.service.jpa.services.elementary
Subinterfaces of GenericJpaGetRepositoryService in org.autumnframework.service.jpa.services.elementaryModifier and TypeInterfaceDescriptioninterfaceCreateService<T extends JpaIdentifiable>Our standard CreateService which uses a repository that uses Long id'sinterfaceDeleteByApiIdService<T extends JpaApiIdentifiable>Delete by api id is a composed service, it exists of services that provide: - findByApiId - deleteById It's composed to use the same implementation, which re-uses code that also handles OnDeleteEventsinterfaceDeleteByIdService<T extends JpaIdentifiable>Our standard delete service which uses a repository that uses Long id'sinterfaceinterfaceinterfaceReadFindAllService<T extends JpaIdentifiable>Our standard find all service which uses a repository that uses Long id'sinterfaceReadFindByApiIdService<T extends JpaApiIdentifiable>Our standard find by api id service which uses an API repository, which has an extra findByApiId Because the most generic services facilitate no support for finding an entity by anything else than it's own id, we need to implement it here to make it part of our more specific Jpa service implementationinterfaceReadFindByApiIdsService<T extends JpaApiIdentifiable>Our standard find by api ids service which uses an API repository, which has an extra findByApiIds Because the most generic services facilitate no support for finding an entity by anything else than it's own id, we need to implement it here to make it part of our more specific Jpa service implementationinterfaceReadFindByIdService<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'sinterfaceStreamingReadFindAllService<T extends JpaApiIdentifiable>Our standard find all 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 GenericJpaGetRepositoryService in org.autumnframework.service.jpa.services.genericdefault
Subinterfaces of GenericJpaGetRepositoryService in org.autumnframework.service.jpa.services.genericdefaultModifier and TypeInterfaceDescriptioninterfaceGenericJpaCreateService<T extends GenericIdentifiable<ID>,ID extends Serializable, EVENT_METADATA> Provides a default implementation for the create serviceinterfaceGenericJpaDeleteByIdService<T extends GenericIdentifiable<ID>,ID extends Serializable, EVENT_METADATA> Provides a default implementation for the delete serviceinterfaceGenericJpaReadFindAllService<T extends GenericIdentifiable<ID>,ID extends Serializable> Provides a default implementation of the findAll serviceinterfaceGenericJpaReadFindByIdService<T extends GenericIdentifiable<ID>,ID extends Serializable> interfaceGenericJpaReadFindByIdsService<T extends GenericIdentifiable<ID>,ID extends Serializable> Provides a generic implementation of the find by idsinterfaceGenericJpaStreamingReadFindAllService<T extends JpaApiIdentifiable,ID extends Serializable> Provides a default implementation of the findAll serviceinterfaceGenericJpaUpdateService<T extends GenericIdentifiable<ID>,ID extends Serializable, EVENT_METADATA> Defines a default implementation of update -
Uses of GenericJpaGetRepositoryService in org.autumnframework.service.jpa.services.implementation
Classes in org.autumnframework.service.jpa.services.implementation that implement GenericJpaGetRepositoryServiceModifier and TypeClassDescriptionclassStandardApiService<T extends JpaApiIdentifiable,R extends JpaApiRepository<T>> classStandardService<T extends JpaIdentifiable,R extends JpaRepository<T>>