Package org.openapitools.client.model
Class TaskBpmnErrorDto
- java.lang.Object
-
- org.openapitools.client.model.TaskBpmnErrorDto
-
public class TaskBpmnErrorDto extends Object
TaskBpmnErrorDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_ERROR_CODEstatic StringSERIALIZED_NAME_ERROR_MESSAGEstatic StringSERIALIZED_NAME_VARIABLES
-
Constructor Summary
Constructors Constructor Description TaskBpmnErrorDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)TaskBpmnErrorDtoerrorCode(String errorCode)TaskBpmnErrorDtoerrorMessage(String errorMessage)StringgetErrorCode()An error code that indicates the predefined error.StringgetErrorMessage()An error message that describes the error.Map<String,VariableValueDto>getVariables()A JSON object containing variable key-value pairs.inthashCode()TaskBpmnErrorDtoputVariablesItem(String key, VariableValueDto variablesItem)voidsetErrorCode(String errorCode)voidsetErrorMessage(String errorMessage)voidsetVariables(Map<String,VariableValueDto> variables)StringtoString()TaskBpmnErrorDtovariables(Map<String,VariableValueDto> variables)
-
-
-
Field Detail
-
SERIALIZED_NAME_ERROR_CODE
public static final String SERIALIZED_NAME_ERROR_CODE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ERROR_MESSAGE
public static final String SERIALIZED_NAME_ERROR_MESSAGE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_VARIABLES
public static final String SERIALIZED_NAME_VARIABLES
- See Also:
- Constant Field Values
-
-
Method Detail
-
errorCode
public TaskBpmnErrorDto errorCode(String errorCode)
-
getErrorCode
public String getErrorCode()
An error code that indicates the predefined error. It is used to identify the BPMN error handler.- Returns:
- errorCode
-
setErrorCode
public void setErrorCode(String errorCode)
-
errorMessage
public TaskBpmnErrorDto errorMessage(String errorMessage)
-
getErrorMessage
public String getErrorMessage()
An error message that describes the error.- Returns:
- errorMessage
-
setErrorMessage
public void setErrorMessage(String errorMessage)
-
variables
public TaskBpmnErrorDto variables(Map<String,VariableValueDto> variables)
-
putVariablesItem
public TaskBpmnErrorDto putVariablesItem(String key, VariableValueDto variablesItem)
-
getVariables
public Map<String,VariableValueDto> getVariables()
A JSON object containing variable key-value pairs.- Returns:
- variables
-
setVariables
public void setVariables(Map<String,VariableValueDto> variables)
-
-