Package org.openapitools.client.model
Class ExecutionDto
- java.lang.Object
-
- org.openapitools.client.model.ExecutionDto
-
public class ExecutionDto extends Object
ExecutionDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_ENDEDstatic StringSERIALIZED_NAME_IDstatic StringSERIALIZED_NAME_PROCESS_INSTANCE_IDstatic StringSERIALIZED_NAME_TENANT_ID
-
Constructor Summary
Constructors Constructor Description ExecutionDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExecutionDtoended(Boolean ended)booleanequals(Object o)BooleangetEnded()Indicates if the execution is ended.StringgetId()The id of the Execution.StringgetProcessInstanceId()The id of the root of the execution tree representing the process instance.StringgetTenantId()The id of the tenant this execution belongs to.inthashCode()ExecutionDtoid(String id)ExecutionDtoprocessInstanceId(String processInstanceId)voidsetEnded(Boolean ended)voidsetId(String id)voidsetProcessInstanceId(String processInstanceId)voidsetTenantId(String tenantId)ExecutionDtotenantId(String tenantId)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_ID
public static final String SERIALIZED_NAME_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PROCESS_INSTANCE_ID
public static final String SERIALIZED_NAME_PROCESS_INSTANCE_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ENDED
public static final String SERIALIZED_NAME_ENDED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TENANT_ID
public static final String SERIALIZED_NAME_TENANT_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
id
public ExecutionDto id(String id)
-
getId
public String getId()
The id of the Execution.- Returns:
- id
-
setId
public void setId(String id)
-
processInstanceId
public ExecutionDto processInstanceId(String processInstanceId)
-
getProcessInstanceId
public String getProcessInstanceId()
The id of the root of the execution tree representing the process instance.- Returns:
- processInstanceId
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
-
ended
public ExecutionDto ended(Boolean ended)
-
getEnded
public Boolean getEnded()
Indicates if the execution is ended.- Returns:
- ended
-
setEnded
public void setEnded(Boolean ended)
-
tenantId
public ExecutionDto tenantId(String tenantId)
-
getTenantId
public String getTenantId()
The id of the tenant this execution belongs to. Can be `null` if the execution belongs to no single tenant.- Returns:
- tenantId
-
setTenantId
public void setTenantId(String tenantId)
-
-