Interface ApplicationRepository
- All Superinterfaces:
io.micronaut.data.repository.CrudRepository<Application,,Long> io.micronaut.data.repository.GenericRepository<Application,,Long> io.micronaut.data.repository.PageableRepository<Application,Long>
@JdbcRepository(dialect=POSTGRES)
public interface ApplicationRepository
extends io.micronaut.data.repository.PageableRepository<Application,Long>
Repository for storing generated applications.
- Since:
- 1.0.0
- Author:
- graemerocher
-
Method Summary
Modifier and TypeMethodDescriptionlist(io.micronaut.data.model.Pageable pageable) List the applications with the features.Methods inherited from interface io.micronaut.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findById, save, saveAll, update, updateAllMethods inherited from interface io.micronaut.data.repository.PageableRepository
findAll, findAll
-
Method Details
-
list
List the applications with the features.- Parameters:
pageable- The pageable- Returns:
- The application and the features
-