Interface CustomizedTaskRepository

All Known Subinterfaces:
TaskRepository
All Known Implementing Classes:
CustomizedTaskRepositoryImpl

public interface CustomizedTaskRepository
  • Method Details

    • findByVariableNameAndValue

      org.springframework.data.domain.Page<TaskEntity> findByVariableNameAndValue(String name, VariableValue<?> value, com.querydsl.core.types.Predicate predicate, org.springframework.data.domain.Pageable pageable)
    • findWithProcessVariables

      org.springframework.data.domain.Page<TaskEntity> findWithProcessVariables(List<String> variableKeys, com.querydsl.core.types.Predicate predicate, org.springframework.data.domain.Pageable pageable)
    • findInProcessInstanceScope

      Iterable<TaskEntity> findInProcessInstanceScope(com.querydsl.core.types.Predicate predicate)
    • findInProcessInstanceScope

      org.springframework.data.domain.Page<TaskEntity> findInProcessInstanceScope(com.querydsl.core.types.Predicate predicate, org.springframework.data.domain.Pageable pageable)
    • existsInProcessInstanceScope

      boolean existsInProcessInstanceScope(com.querydsl.core.types.Predicate predicate)