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 Type
    Method
    Description
    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, save

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findByLicenseKey

      LicenseKeyList findByLicenseKey(String licenseKey)
      Method to extract licensekey list details by license key.
      Parameters:
      licenseKey - the license key.
      Returns:
      the entity response.