Package org.openiam.esb.repository
Interface AuthenticationRuleStepToStepXrefRepository
-
- All Superinterfaces:
AbstractEntityRepository<AuthenticationRuleStepToStepXrefEntity,String>
,org.springframework.data.repository.CrudRepository<AuthenticationRuleStepToStepXrefEntity,String>
,org.springframework.data.jpa.repository.JpaRepository<AuthenticationRuleStepToStepXrefEntity,String>
,org.springframework.data.jpa.repository.JpaSpecificationExecutor<AuthenticationRuleStepToStepXrefEntity>
,org.springframework.data.repository.PagingAndSortingRepository<AuthenticationRuleStepToStepXrefEntity,String>
,org.springframework.data.repository.query.QueryByExampleExecutor<AuthenticationRuleStepToStepXrefEntity>
,org.springframework.data.repository.Repository<AuthenticationRuleStepToStepXrefEntity,String>
@Repository public interface AuthenticationRuleStepToStepXrefRepository extends AbstractEntityRepository<AuthenticationRuleStepToStepXrefEntity,String>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<AuthenticationRuleStepToStepXrefEntity>
findAllByRuleIds(Set<String> ruleIds)
-
Methods inherited from interface org.openiam.esb.repository.AbstractEntityRepository
getPageable
-
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, 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
-
findAllByRuleIds
@Query("SELECT r FROM AuthenticationRuleStepToStepXrefEntity r WHERE r.parent.rule.id in (:ruleIds)") List<AuthenticationRuleStepToStepXrefEntity> findAllByRuleIds(@Param("ruleIds") Set<String> ruleIds)
-
-