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