Package org.openapitools.client.model
Class ProcessDefinitionSuspensionStateDto
- java.lang.Object
-
- org.openapitools.client.model.ProcessDefinitionSuspensionStateDto
-
public class ProcessDefinitionSuspensionStateDto extends Object
ProcessDefinitionSuspensionStateDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_EXECUTION_DATEstatic StringSERIALIZED_NAME_INCLUDE_PROCESS_INSTANCESstatic StringSERIALIZED_NAME_PROCESS_DEFINITION_IDstatic StringSERIALIZED_NAME_PROCESS_DEFINITION_KEYstatic StringSERIALIZED_NAME_SUSPENDED
-
Constructor Summary
Constructors Constructor Description ProcessDefinitionSuspensionStateDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)ProcessDefinitionSuspensionStateDtoexecutionDate(Date executionDate)DategetExecutionDate()The date on which all process definitions with the given key will be activated or suspended.BooleangetIncludeProcessInstances()A `Boolean` value which indicates whether to activate or suspend also all process instances of the process definitions with the given key.StringgetProcessDefinitionId()The id of the process definitions to activate or suspend.StringgetProcessDefinitionKey()The key of the process definitions to activate or suspend.BooleangetSuspended()A `Boolean` value which indicates whether to activate or suspend all process definitions with the given key.inthashCode()ProcessDefinitionSuspensionStateDtoincludeProcessInstances(Boolean includeProcessInstances)ProcessDefinitionSuspensionStateDtoprocessDefinitionId(String processDefinitionId)ProcessDefinitionSuspensionStateDtoprocessDefinitionKey(String processDefinitionKey)voidsetExecutionDate(Date executionDate)voidsetIncludeProcessInstances(Boolean includeProcessInstances)voidsetProcessDefinitionId(String processDefinitionId)voidsetProcessDefinitionKey(String processDefinitionKey)voidsetSuspended(Boolean suspended)ProcessDefinitionSuspensionStateDtosuspended(Boolean suspended)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_SUSPENDED
public static final String SERIALIZED_NAME_SUSPENDED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PROCESS_DEFINITION_ID
public static final String SERIALIZED_NAME_PROCESS_DEFINITION_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PROCESS_DEFINITION_KEY
public static final String SERIALIZED_NAME_PROCESS_DEFINITION_KEY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_INCLUDE_PROCESS_INSTANCES
public static final String SERIALIZED_NAME_INCLUDE_PROCESS_INSTANCES
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_EXECUTION_DATE
public static final String SERIALIZED_NAME_EXECUTION_DATE
- See Also:
- Constant Field Values
-
-
Method Detail
-
suspended
public ProcessDefinitionSuspensionStateDto suspended(Boolean suspended)
-
getSuspended
public Boolean getSuspended()
A `Boolean` value which indicates whether to activate or suspend all process definitions with the given key. When the value is set to `true`, all process definitions with the given key will be suspended and when the value is set to `false`, all process definitions with the given key will be activated.- Returns:
- suspended
-
setSuspended
public void setSuspended(Boolean suspended)
-
processDefinitionId
public ProcessDefinitionSuspensionStateDto processDefinitionId(String processDefinitionId)
-
getProcessDefinitionId
public String getProcessDefinitionId()
The id of the process definitions to activate or suspend.- Returns:
- processDefinitionId
-
setProcessDefinitionId
public void setProcessDefinitionId(String processDefinitionId)
-
processDefinitionKey
public ProcessDefinitionSuspensionStateDto processDefinitionKey(String processDefinitionKey)
-
getProcessDefinitionKey
public String getProcessDefinitionKey()
The key of the process definitions to activate or suspend.- Returns:
- processDefinitionKey
-
setProcessDefinitionKey
public void setProcessDefinitionKey(String processDefinitionKey)
-
includeProcessInstances
public ProcessDefinitionSuspensionStateDto includeProcessInstances(Boolean includeProcessInstances)
-
getIncludeProcessInstances
public Boolean getIncludeProcessInstances()
A `Boolean` value which indicates whether to activate or suspend also all process instances of the process definitions with the given key. When the value is set to `true`, all process instances of the process definitions with the given key will be activated or suspended and when the value is set to `false`, the suspension state of all process instances of the process definitions with the given key will not be updated.- Returns:
- includeProcessInstances
-
setIncludeProcessInstances
public void setIncludeProcessInstances(Boolean includeProcessInstances)
-
executionDate
public ProcessDefinitionSuspensionStateDto executionDate(Date executionDate)
-
getExecutionDate
public Date getExecutionDate()
The date on which all process definitions with the given key will be activated or suspended. If `null`, the suspension state of all process definitions with the given key is updated immediately. By [default](https://docs.camunda.org/manual/7.18/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.- Returns:
- executionDate
-
setExecutionDate
public void setExecutionDate(Date executionDate)
-
-