Class FetchExternalTasksDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.externaltask.FetchExternalTasksDto
-
- Direct Known Subclasses:
FetchExternalTasksExtendedDto
public class FetchExternalTasksDto extends Object
- Author:
- Thorben Lindhauer
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FetchExternalTasksDto.FetchExternalTaskTopicDto
-
Field Summary
Fields Modifier and Type Field Description protected boolean
includeExtensionProperties
protected int
maxTasks
protected List<FetchExternalTasksDto.FetchExternalTaskTopicDto>
topics
protected boolean
usePriority
protected String
workerId
-
Constructor Summary
Constructors Constructor Description FetchExternalTasksDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExternalTaskQueryBuilder
buildQuery(ProcessEngine processEngine)
int
getMaxTasks()
List<FetchExternalTasksDto.FetchExternalTaskTopicDto>
getTopics()
String
getWorkerId()
boolean
isIncludeExtensionProperties()
boolean
isUsePriority()
void
setIncludeExtensionProperties(boolean includeExtensionProperties)
void
setMaxTasks(int maxTasks)
void
setTopics(List<FetchExternalTasksDto.FetchExternalTaskTopicDto> topics)
void
setUsePriority(boolean usePriority)
void
setWorkerId(String workerId)
-
-
-
Field Detail
-
maxTasks
protected int maxTasks
-
workerId
protected String workerId
-
usePriority
protected boolean usePriority
-
topics
protected List<FetchExternalTasksDto.FetchExternalTaskTopicDto> topics
-
includeExtensionProperties
protected boolean includeExtensionProperties
-
-
Method Detail
-
getMaxTasks
public int getMaxTasks()
-
setMaxTasks
public void setMaxTasks(int maxTasks)
-
getWorkerId
public String getWorkerId()
-
setWorkerId
public void setWorkerId(String workerId)
-
getTopics
public List<FetchExternalTasksDto.FetchExternalTaskTopicDto> getTopics()
-
setTopics
public void setTopics(List<FetchExternalTasksDto.FetchExternalTaskTopicDto> topics)
-
isUsePriority
public boolean isUsePriority()
-
setUsePriority
public void setUsePriority(boolean usePriority)
-
isIncludeExtensionProperties
public boolean isIncludeExtensionProperties()
-
setIncludeExtensionProperties
public void setIncludeExtensionProperties(boolean includeExtensionProperties)
-
buildQuery
public ExternalTaskQueryBuilder buildQuery(ProcessEngine processEngine)
-
-