Class FailureRequestDto
- java.lang.Object
-
- org.camunda.bpm.client.impl.RequestDto
-
- org.camunda.bpm.client.task.impl.dto.FailureRequestDto
-
public class FailureRequestDto extends RequestDto
- Author:
- Tassilo Weidner
-
-
Field Summary
Fields Modifier and Type Field Description protected String
errorDetails
protected String
errorMessage
protected Map<String,TypedValueField>
localVariables
protected int
retries
protected long
retryTimeout
protected Map<String,TypedValueField>
variables
-
Fields inherited from class org.camunda.bpm.client.impl.RequestDto
workerId
-
-
Constructor Summary
Constructors Constructor Description FailureRequestDto(String workerId, String errorMessage, String errorDetails, int retries, long retryTimeout, Map<String,TypedValueField> variables, Map<String,TypedValueField> localVariables)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getErrorDetails()
String
getErrorMessage()
Map<String,TypedValueField>
getLocalVariables()
int
getRetries()
long
getRetryTimeout()
Map<String,TypedValueField>
getVariables()
-
Methods inherited from class org.camunda.bpm.client.impl.RequestDto
getWorkerId
-
-
-
-
Field Detail
-
errorMessage
protected String errorMessage
-
errorDetails
protected String errorDetails
-
retries
protected int retries
-
retryTimeout
protected long retryTimeout
-
variables
protected Map<String,TypedValueField> variables
-
localVariables
protected Map<String,TypedValueField> localVariables
-
-
Constructor Detail
-
FailureRequestDto
public FailureRequestDto(String workerId, String errorMessage, String errorDetails, int retries, long retryTimeout, Map<String,TypedValueField> variables, Map<String,TypedValueField> localVariables)
-
-
Method Detail
-
getErrorMessage
public String getErrorMessage()
-
getErrorDetails
public String getErrorDetails()
-
getRetries
public int getRetries()
-
getRetryTimeout
public long getRetryTimeout()
-
getVariables
public Map<String,TypedValueField> getVariables()
-
getLocalVariables
public Map<String,TypedValueField> getLocalVariables()
-
-