Interface LicenseKeyListRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<LicenseKeyList,,String> org.springframework.data.jpa.repository.JpaRepository<LicenseKeyList,,String> org.springframework.data.repository.ListCrudRepository<LicenseKeyList,,String> org.springframework.data.repository.ListPagingAndSortingRepository<LicenseKeyList,,String> org.springframework.data.repository.PagingAndSortingRepository<LicenseKeyList,,String> org.springframework.data.repository.query.QueryByExampleExecutor<LicenseKeyList>,org.springframework.data.repository.Repository<LicenseKeyList,String>
@Repository
public interface LicenseKeyListRepository
extends org.springframework.data.jpa.repository.JpaRepository<LicenseKeyList,String>
Repository class for
LicenseKeyList.- Since:
- 1.0.0
- Author:
- Sagar Mahapatra
-
Method Summary
Modifier and TypeMethodDescriptionfindByLicenseKey(String licenseKey) Method to extract licensekey list details by license key.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByLicenseKey
Method to extract licensekey list details by license key.- Parameters:
licenseKey- the license key.- Returns:
- the entity response.
-