Interface BPMNSequenceFlowRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<BPMNSequenceFlowEntity,String>,org.springframework.data.repository.PagingAndSortingRepository<BPMNSequenceFlowEntity,String>,org.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QBPMNSequenceFlowEntity>,org.springframework.data.querydsl.QuerydslPredicateExecutor<BPMNSequenceFlowEntity>,org.springframework.data.repository.Repository<BPMNSequenceFlowEntity,String>
public interface BPMNSequenceFlowRepository extends org.springframework.data.repository.PagingAndSortingRepository<BPMNSequenceFlowEntity,String>, org.springframework.data.querydsl.QuerydslPredicateExecutor<BPMNSequenceFlowEntity>, org.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QBPMNSequenceFlowEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidcustomize(org.springframework.data.querydsl.binding.QuerydslBindings bindings, QBPMNSequenceFlowEntity root)BPMNSequenceFlowEntityfindByEventId(String eventId)List<BPMNSequenceFlowEntity>findByProcessInstanceId(String processInstanceId)BPMNSequenceFlowEntityfindByProcessInstanceIdAndElementId(String processInstanceId, String elementId)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
-
-
-
-
Method Detail
-
customize
default void customize(org.springframework.data.querydsl.binding.QuerydslBindings bindings, QBPMNSequenceFlowEntity root)- Specified by:
customizein interfaceorg.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QBPMNSequenceFlowEntity>
-
findByProcessInstanceId
List<BPMNSequenceFlowEntity> findByProcessInstanceId(String processInstanceId)
-
findByProcessInstanceIdAndElementId
BPMNSequenceFlowEntity findByProcessInstanceIdAndElementId(String processInstanceId, String elementId)
-
findByEventId
BPMNSequenceFlowEntity findByEventId(String eventId)
-
-