Package nl.b3p.tailormap.api.repository
Interface ApplicationRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Application,Long>,org.springframework.data.jpa.repository.JpaRepository<Application,Long>,org.springframework.data.repository.PagingAndSortingRepository<Application,Long>,org.springframework.data.repository.query.QueryByExampleExecutor<Application>,org.springframework.data.repository.Repository<Application,Long>
public interface ApplicationRepository extends org.springframework.data.jpa.repository.JpaRepository<Application,Long>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<Application>findById(Long aLong)ApplicationfindByName(String name)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
-
-
-
-
Method Detail
-
findByName
@PreAuthorize("permitAll()") Application findByName(String name)
-
findById
@PreAuthorize("permitAll()") @NonNull Optional<Application> findById(@NonNull Long aLong)- Specified by:
findByIdin interfaceorg.springframework.data.repository.CrudRepository<Application,Long>
-
-