Package eu.europeana.apikey.repos
Interface ApiKeyRepo
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ApiKey,String>,org.springframework.data.jpa.repository.JpaRepository<ApiKey,String>,org.springframework.data.repository.PagingAndSortingRepository<ApiKey,String>,org.springframework.data.repository.query.QueryByExampleExecutor<ApiKey>,org.springframework.data.repository.Repository<ApiKey,String>
@Repository public interface ApiKeyRepo extends org.springframework.data.jpa.repository.JpaRepository<ApiKey,String>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ApiKey>findAll()List<ApiKey>findAllKeysToMigrate()Optional<ApiKey>findByEmail(String email)List<ApiKey>findByEmailAndAppName(String email, String appName)Optional<ApiKey>findByKeycloakId(String keycloakId)-
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, findAllById, flush, getOne, saveAll, saveAndFlush
-
-