Interface KeyAliasRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<KeyAlias,String>,org.springframework.data.jpa.repository.JpaRepository<KeyAlias,String>,org.springframework.data.repository.PagingAndSortingRepository<KeyAlias,String>,org.springframework.data.repository.query.QueryByExampleExecutor<KeyAlias>,org.springframework.data.repository.Repository<KeyAlias,String>
@Repository public interface KeyAliasRepository extends org.springframework.data.jpa.repository.JpaRepository<KeyAlias,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 List<KeyAlias>findByApplicationIdAndReferenceId(String applicationId, String referenceId)Function to find keyalias by applicationId and referenceId-
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
-
-