Package org.openiam.esb.repository
Interface AccessCertificationRepository
-
- All Superinterfaces:
AbstractEntityRepository<AccessCertificationEntity,String>
,AbstractKeyEntityCustomRepository<AccessCertificationEntity,String>
,AbstractKeyEntityRepository<AccessCertificationEntity,String>
,AbstractKeyNameEntityCustomRepository<AccessCertificationEntity,String>
,AbstractKeyNameEntityRepository<AccessCertificationEntity,String>
,AbstractMetadataTypeRepository<AccessCertificationEntity,String>
,AbstractMetadataTypeRepositoryCustom<AccessCertificationEntity,String>
,AccessCertificationRepositoryCustom
,org.springframework.data.repository.CrudRepository<AccessCertificationEntity,String>
,FindBeansRepositoryCustom<AccessCertificationEntity,AccessCertificationSearchBean>
,org.springframework.data.jpa.repository.JpaRepository<AccessCertificationEntity,String>
,org.springframework.data.jpa.repository.JpaSpecificationExecutor<AccessCertificationEntity>
,org.springframework.data.repository.PagingAndSortingRepository<AccessCertificationEntity,String>
,org.springframework.data.repository.query.QueryByExampleExecutor<AccessCertificationEntity>
,org.springframework.data.repository.Repository<AccessCertificationEntity,String>
@Repository public interface AccessCertificationRepository extends AbstractMetadataTypeRepository<AccessCertificationEntity,String>, AccessCertificationRepositoryCustom
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<AccessCertificationNameBean>
getAllByIds(Collection<String> ids)
List<String>
getAllByUarManager(String uarManager)
-
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
-
getAllByIds
@Query("select new AccessCertificationNameBean(a.id,a.name) from AccessCertificationEntity a where a.id in :ids") List<AccessCertificationNameBean> getAllByIds(@Param("ids") Collection<String> ids)
-
-