Class LockedExternalTaskDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.externaltask.LockedExternalTaskDto
-
public class LockedExternalTaskDto extends Object
- Author:
- Thorben Lindhauer, Askar Akhmerov
-
-
Field Summary
Fields Modifier and Type Field Description protected String
activityId
protected String
activityInstanceId
protected String
businessKey
protected String
errorDetails
protected String
errorMessage
protected String
executionId
protected Map<String,String>
extensionProperties
protected String
id
protected Date
lockExpirationTime
protected long
priority
protected String
processDefinitionId
protected String
processDefinitionKey
protected String
processDefinitionVersionTag
protected String
processInstanceId
protected Integer
retries
protected boolean
suspended
protected String
tenantId
protected String
topicName
protected Map<String,VariableValueDto>
variables
protected String
workerId
-
Constructor Summary
Constructors Constructor Description LockedExternalTaskDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LockedExternalTaskDto
fromLockedExternalTask(LockedExternalTask task)
static List<LockedExternalTaskDto>
fromLockedExternalTasks(List<LockedExternalTask> tasks)
String
getActivityId()
String
getActivityInstanceId()
String
getBusinessKey()
String
getErrorDetails()
String
getErrorMessage()
String
getExecutionId()
Map<String,String>
getExtensionProperties()
String
getId()
Date
getLockExpirationTime()
long
getPriority()
String
getProcessDefinitionId()
String
getProcessDefinitionKey()
String
getProcessDefinitionVersionTag()
String
getProcessInstanceId()
Integer
getRetries()
String
getTenantId()
String
getTopicName()
Map<String,VariableValueDto>
getVariables()
String
getWorkerId()
boolean
isSuspended()
String
toString()
-
-
-
Field Detail
-
activityId
protected String activityId
-
activityInstanceId
protected String activityInstanceId
-
errorMessage
protected String errorMessage
-
errorDetails
protected String errorDetails
-
executionId
protected String executionId
-
id
protected String id
-
lockExpirationTime
protected Date lockExpirationTime
-
processDefinitionId
protected String processDefinitionId
-
processDefinitionKey
protected String processDefinitionKey
-
processDefinitionVersionTag
protected String processDefinitionVersionTag
-
processInstanceId
protected String processInstanceId
-
retries
protected Integer retries
-
suspended
protected boolean suspended
-
workerId
protected String workerId
-
topicName
protected String topicName
-
tenantId
protected String tenantId
-
variables
protected Map<String,VariableValueDto> variables
-
priority
protected long priority
-
businessKey
protected String businessKey
-
-
Method Detail
-
getActivityId
public String getActivityId()
-
getActivityInstanceId
public String getActivityInstanceId()
-
getErrorMessage
public String getErrorMessage()
-
getExecutionId
public String getExecutionId()
-
getId
public String getId()
-
getLockExpirationTime
public Date getLockExpirationTime()
-
getProcessDefinitionId
public String getProcessDefinitionId()
-
getProcessDefinitionKey
public String getProcessDefinitionKey()
-
getProcessDefinitionVersionTag
public String getProcessDefinitionVersionTag()
-
getProcessInstanceId
public String getProcessInstanceId()
-
getRetries
public Integer getRetries()
-
isSuspended
public boolean isSuspended()
-
getWorkerId
public String getWorkerId()
-
getTopicName
public String getTopicName()
-
getTenantId
public String getTenantId()
-
getVariables
public Map<String,VariableValueDto> getVariables()
-
getPriority
public long getPriority()
-
getErrorDetails
public String getErrorDetails()
-
getBusinessKey
public String getBusinessKey()
-
fromLockedExternalTask
public static LockedExternalTaskDto fromLockedExternalTask(LockedExternalTask task)
-
fromLockedExternalTasks
public static List<LockedExternalTaskDto> fromLockedExternalTasks(List<LockedExternalTask> tasks)
-
-