Interface ApplicationRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Application,
,String> org.springframework.data.jpa.repository.JpaRepository<Application,
,String> org.springframework.data.repository.ListCrudRepository<Application,
,String> org.springframework.data.repository.ListPagingAndSortingRepository<Application,
,String> org.springframework.data.repository.PagingAndSortingRepository<Application,
,String> QlackBaseRepository<Application,
,String> org.springframework.data.repository.query.QueryByExampleExecutor<Application>
,org.springframework.data.querydsl.QuerydslPredicateExecutor<Application>
,org.springframework.data.repository.Repository<Application,
String>
An interface Repository provides abstract methods for crud operations
- Author:
- European Dynamics SA
-
Method Summary
Modifier and TypeMethodDescriptionfindBySymbolicName
(String symbolicName) An abstract declaration method that is used to retrieve the symbolic nameMethods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
Methods inherited from interface com.eurodyn.qlack.common.repository.QlackBaseRepository
fetchById, findAll, findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
Methods inherited from interface org.springframework.data.querydsl.QuerydslPredicateExecutor
count, exists, findAll, findAll, findAll, findBy, findOne
-
Method Details
-
findBySymbolicName
An abstract declaration method that is used to retrieve the symbolic name- Parameters:
symbolicName
- the symbolic name- Returns:
- the symbolic name according to its name
-