Interface LicenseKeyListRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<LicenseKeyList,String>,org.springframework.data.jpa.repository.JpaRepository<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 forLicenseKeyList.- Since:
- 1.0.0
- Author:
- Sagar Mahapatra
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LicenseKeyListfindByLicenseKey(String licenseKey)Method to extract licensekey list details by license key.-
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
-
-
-
-
Method Detail
-
findByLicenseKey
LicenseKeyList findByLicenseKey(String licenseKey)
Method to extract licensekey list details by license key.- Parameters:
licenseKey- the license key.- Returns:
- the entity response.
-
-