Package org.openiam.esb.repository
Interface UIThemeRepository
-
- All Superinterfaces:
AbstractEntityRepository<UIThemeEntity,String>
,AbstractKeyEntityCustomRepository<UIThemeEntity,String>
,AbstractKeyEntityRepository<UIThemeEntity,String>
,AbstractKeyNameEntityRepository<UIThemeEntity,String>
,org.springframework.data.repository.CrudRepository<UIThemeEntity,String>
,FindBeansRepositoryCustom<UIThemeEntity,UIThemeSearchBean>
,org.springframework.data.jpa.repository.JpaRepository<UIThemeEntity,String>
,org.springframework.data.jpa.repository.JpaSpecificationExecutor<UIThemeEntity>
,org.springframework.data.repository.PagingAndSortingRepository<UIThemeEntity,String>
,org.springframework.data.repository.query.QueryByExampleExecutor<UIThemeEntity>
,org.springframework.data.repository.Repository<UIThemeEntity,String>
,UIThemeRepositoryCustom
@Repository public interface UIThemeRepository extends AbstractKeyNameEntityRepository<UIThemeEntity,String>, UIThemeRepositoryCustom
This is repository for working with UIThemeEntity- Author:
- Zorik Zaqaryan
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UIThemeEntity
findFirstByName(String name)
Find UITheme by name-
Methods inherited from interface org.openiam.esb.repository.AbstractEntityRepository
getPageable
-
Methods inherited from interface org.openiam.esb.repository.custom.AbstractKeyEntityCustomRepository
findByIdIn
-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
-
Methods inherited from interface org.openiam.esb.repository.custom.FindBeansRepositoryCustom
count, find, find, find, getByExample, getByExample, isValidSearchBean
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, exists, findAll, findAll, findAll, findOne
-
-
-
-
Method Detail
-
findFirstByName
UIThemeEntity findFirstByName(String name)
Find UITheme by name- Parameters:
name
- name- Returns:
- UITheme entity
-
-