Interface KeyStoreRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<KeyStore,String>,org.springframework.data.jpa.repository.JpaRepository<KeyStore,String>,org.springframework.data.repository.PagingAndSortingRepository<KeyStore,String>,org.springframework.data.repository.query.QueryByExampleExecutor<KeyStore>,org.springframework.data.repository.Repository<KeyStore,String>
@Repository public interface KeyStoreRepository extends org.springframework.data.jpa.repository.JpaRepository<KeyStore,String>
This interface extends BaseRepository which provides with the methods for several CRUD operations.- Since:
- 1.0.0
- Author:
- Dharmesh Khandelwal
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<KeyStore>findByAlias(String alias)Function to find KeyStore by alias-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
-
-