Class HistoricActivityInstanceDto


  • public class HistoricActivityInstanceDto
    extends Object
    HistoricActivityInstanceDto
    • Constructor Detail

      • HistoricActivityInstanceDto

        public HistoricActivityInstanceDto()
    • Method Detail

      • getId

        public String getId()
        The id of the activity instance.
        Returns:
        id
      • setId

        public void setId​(String id)
      • getParentActivityInstanceId

        public String getParentActivityInstanceId()
        The id of the parent activity instance, for example a sub process instance.
        Returns:
        parentActivityInstanceId
      • setParentActivityInstanceId

        public void setParentActivityInstanceId​(String parentActivityInstanceId)
      • getActivityId

        public String getActivityId()
        The id of the activity that this object is an instance of.
        Returns:
        activityId
      • setActivityId

        public void setActivityId​(String activityId)
      • getActivityName

        public String getActivityName()
        The name of the activity that this object is an instance of.
        Returns:
        activityName
      • setActivityName

        public void setActivityName​(String activityName)
      • getActivityType

        public String getActivityType()
        The type of the activity that this object is an instance of.
        Returns:
        activityType
      • setActivityType

        public void setActivityType​(String activityType)
      • getProcessDefinitionKey

        public String getProcessDefinitionKey()
        The key of the process definition that this activity instance belongs to.
        Returns:
        processDefinitionKey
      • setProcessDefinitionKey

        public void setProcessDefinitionKey​(String processDefinitionKey)
      • getProcessDefinitionId

        public String getProcessDefinitionId()
        The id of the process definition that this activity instance belongs to.
        Returns:
        processDefinitionId
      • setProcessDefinitionId

        public void setProcessDefinitionId​(String processDefinitionId)
      • getProcessInstanceId

        public String getProcessInstanceId()
        The id of the process instance that this activity instance belongs to.
        Returns:
        processInstanceId
      • setProcessInstanceId

        public void setProcessInstanceId​(String processInstanceId)
      • getExecutionId

        public String getExecutionId()
        The id of the execution that executed this activity instance.
        Returns:
        executionId
      • setExecutionId

        public void setExecutionId​(String executionId)
      • getTaskId

        public String getTaskId()
        The id of the task that is associated to this activity instance. Is only set if the activity is a user task.
        Returns:
        taskId
      • setTaskId

        public void setTaskId​(String taskId)
      • getAssignee

        public String getAssignee()
        The assignee of the task that is associated to this activity instance. Is only set if the activity is a user task.
        Returns:
        assignee
      • setAssignee

        public void setAssignee​(String assignee)
      • getCalledProcessInstanceId

        public String getCalledProcessInstanceId()
        The id of the called process instance. Is only set if the activity is a call activity and the called instance a process instance.
        Returns:
        calledProcessInstanceId
      • setCalledProcessInstanceId

        public void setCalledProcessInstanceId​(String calledProcessInstanceId)
      • getCalledCaseInstanceId

        public String getCalledCaseInstanceId()
        The id of the called case instance. Is only set if the activity is a call activity and the called instance a case instance.
        Returns:
        calledCaseInstanceId
      • setCalledCaseInstanceId

        public void setCalledCaseInstanceId​(String calledCaseInstanceId)
      • getStartTime

        public Date getStartTime()
        The time the instance was started. 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:
        startTime
      • setStartTime

        public void setStartTime​(Date startTime)
      • getEndTime

        public Date getEndTime()
        The time the instance ended. 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:
        endTime
      • setEndTime

        public void setEndTime​(Date endTime)
      • getDurationInMillis

        public Long getDurationInMillis()
        The time the instance took to finish (in milliseconds).
        Returns:
        durationInMillis
      • setDurationInMillis

        public void setDurationInMillis​(Long durationInMillis)
      • getCanceled

        public Boolean getCanceled()
        If `true`, this activity instance is canceled.
        Returns:
        canceled
      • setCanceled

        public void setCanceled​(Boolean canceled)
      • getCompleteScope

        public Boolean getCompleteScope()
        If `true`, this activity instance did complete a BPMN 2.0 scope.
        Returns:
        completeScope
      • setCompleteScope

        public void setCompleteScope​(Boolean completeScope)
      • getTenantId

        public String getTenantId()
        The tenant id of the activity instance.
        Returns:
        tenantId
      • setTenantId

        public void setTenantId​(String tenantId)
      • getRemovalTime

        public Date getRemovalTime()
        The time after which the activity instance should be removed by the History Cleanup job. 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:
        removalTime
      • setRemovalTime

        public void setRemovalTime​(Date removalTime)
      • getRootProcessInstanceId

        public String getRootProcessInstanceId()
        The process instance id of the root process instance that initiated the process containing this activity instance.
        Returns:
        rootProcessInstanceId
      • setRootProcessInstanceId

        public void setRootProcessInstanceId​(String rootProcessInstanceId)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object