Interface CustomizedTaskRepository
-
- All Known Subinterfaces:
TaskRepository
- All Known Implementing Classes:
CustomizedTaskRepositoryImpl
public interface CustomizedTaskRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanexistsInProcessInstanceScope(com.querydsl.core.types.Predicate predicate)org.springframework.data.domain.Page<TaskEntity>findByVariableNameAndValue(String name, VariableValue<?> value, com.querydsl.core.types.Predicate predicate, org.springframework.data.domain.Pageable pageable)Iterable<TaskEntity>findInProcessInstanceScope(com.querydsl.core.types.Predicate predicate)org.springframework.data.domain.Page<TaskEntity>findInProcessInstanceScope(com.querydsl.core.types.Predicate predicate, org.springframework.data.domain.Pageable pageable)
-
-
-
Method Detail
-
findByVariableNameAndValue
org.springframework.data.domain.Page<TaskEntity> findByVariableNameAndValue(String name, VariableValue<?> value, 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)
-
-