Interface ServiceTaskRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ServiceTaskEntity,String>,org.springframework.data.repository.PagingAndSortingRepository<ServiceTaskEntity,String>,org.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QServiceTaskEntity>,org.springframework.data.querydsl.QuerydslPredicateExecutor<ServiceTaskEntity>,org.springframework.data.repository.Repository<ServiceTaskEntity,String>
public interface ServiceTaskRepository extends org.springframework.data.repository.PagingAndSortingRepository<ServiceTaskEntity,String>, org.springframework.data.querydsl.QuerydslPredicateExecutor<ServiceTaskEntity>, org.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QServiceTaskEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidcustomize(org.springframework.data.querydsl.binding.QuerydslBindings bindings, QServiceTaskEntity root)List<ServiceTaskEntity>findByProcessInstanceId(String processInstanceId)ServiceTaskEntityfindByProcessInstanceIdAndElementId(String processInstanceId, String elementId)ServiceTaskEntityfindByProcessInstanceIdAndElementIdAndExecutionId(String processInstanceId, String elementId, String executionId)List<ServiceTaskEntity>findByProcessInstanceIdAndStatus(String processInstanceId, org.activiti.cloud.api.process.model.CloudBPMNActivity.BPMNActivityStatus status)-
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, QServiceTaskEntity root)- Specified by:
customizein interfaceorg.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QServiceTaskEntity>
-
findByProcessInstanceIdAndStatus
List<ServiceTaskEntity> findByProcessInstanceIdAndStatus(String processInstanceId, org.activiti.cloud.api.process.model.CloudBPMNActivity.BPMNActivityStatus status)
-
findByProcessInstanceId
List<ServiceTaskEntity> findByProcessInstanceId(String processInstanceId)
-
findByProcessInstanceIdAndElementId
ServiceTaskEntity findByProcessInstanceIdAndElementId(String processInstanceId, String elementId)
-
findByProcessInstanceIdAndElementIdAndExecutionId
ServiceTaskEntity findByProcessInstanceIdAndElementIdAndExecutionId(String processInstanceId, String elementId, String executionId)
-
-