Package org.openiam.esb.repository
Interface AttributeMapRepository
-
- All Superinterfaces:
AbstractEntityRepository<AttributeMapEntity,String>,AbstractKeyEntityCustomRepository<AttributeMapEntity,String>,AbstractKeyEntityRepository<AttributeMapEntity,String>,AbstractKeyNameEntityCustomRepository<AttributeMapEntity,String>,AbstractKeyNameEntityRepository<AttributeMapEntity,String>,AttributeMapRepositoryCustom,org.springframework.data.repository.CrudRepository<AttributeMapEntity,String>,FindBeansRepositoryCustom<AttributeMapEntity,AttributeMapSearchBean>,org.springframework.data.jpa.repository.JpaRepository<AttributeMapEntity,String>,org.springframework.data.jpa.repository.JpaSpecificationExecutor<AttributeMapEntity>,org.springframework.data.repository.PagingAndSortingRepository<AttributeMapEntity,String>,org.springframework.data.repository.query.QueryByExampleExecutor<AttributeMapEntity>,org.springframework.data.repository.Repository<AttributeMapEntity,String>
@Repository public interface AttributeMapRepository extends AbstractKeyNameEntityRepository<AttributeMapEntity,String>, AttributeMapRepositoryCustom
This is repository for working with AttributeMapEntity- Author:
- Sanchir Kartiev
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<AttributeMapEntity>findByManagedSysId(String managedSysId)List<AttributeMapEntity>findByMngSysPolicyId(String mngSysPolicyId)List<AttributeMapEntity>findByResourceId(String resourceId)List<AttributeMapEntity>findBySynchConfigId(String synchConfigId)-
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
-
findByResourceId
List<AttributeMapEntity> findByResourceId(String resourceId)
-
findByMngSysPolicyId
@Query("SELECT m FROM AttributeMapEntity m WHERE m.mngSysPolicy.id=:mngSysPolicyId") List<AttributeMapEntity> findByMngSysPolicyId(@Param("mngSysPolicyId") String mngSysPolicyId)
-
findByManagedSysId
@Query("SELECT m FROM AttributeMapEntity m WHERE m.mngSysPolicy.managedSystem.id=:managedSysId") List<AttributeMapEntity> findByManagedSysId(@Param("managedSysId") String managedSysId)
-
findBySynchConfigId
List<AttributeMapEntity> findBySynchConfigId(String synchConfigId)
-
-