Class HistoricDecisionInputInstanceDto


  • public class HistoricDecisionInputInstanceDto
    extends Object
    HistoricDecisionInputInstanceDto
    • Constructor Detail

      • HistoricDecisionInputInstanceDto

        public HistoricDecisionInputInstanceDto()
    • Method Detail

      • getId

        public String getId()
        The id of the decision input value.
        Returns:
        id
      • setId

        public void setId​(String id)
      • getDecisionInstanceId

        public String getDecisionInstanceId()
        The id of the decision instance the input value belongs to.
        Returns:
        decisionInstanceId
      • setDecisionInstanceId

        public void setDecisionInstanceId​(String decisionInstanceId)
      • getClauseId

        public String getClauseId()
        The id of the clause the input value belongs to.
        Returns:
        clauseId
      • setClauseId

        public void setClauseId​(String clauseId)
      • getClauseName

        public String getClauseName()
        The name of the clause the input value belongs to.
        Returns:
        clauseName
      • setClauseName

        public void setClauseName​(String clauseName)
      • getErrorMessage

        public String getErrorMessage()
        An error message in case a Java Serialized Object could not be de-serialized.
        Returns:
        errorMessage
      • setErrorMessage

        public void setErrorMessage​(String errorMessage)
      • getType

        public String getType()
        The value type of the variable.
        Returns:
        type
      • setType

        public void setType​(String type)
      • getCreateTime

        public Date getCreateTime()
        The time the variable was inserted. [Default format](https://docs.camunda.org/manual/7.18/reference/rest/overview/date-format/) `yyyy-MM-dd'T'HH:mm:ss.SSSZ`.
        Returns:
        createTime
      • setCreateTime

        public void setCreateTime​(Date createTime)
      • getRemovalTime

        public Date getRemovalTime()
        The time after which the entry should be removed by the History Cleanup job. [Default format](https://docs.camunda.org/manual/7.18/reference/rest/overview/date-format/) `yyyy-MM-dd'T'HH:mm:ss.SSSZ`.
        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 entry.
        Returns:
        rootProcessInstanceId
      • setRootProcessInstanceId

        public void setRootProcessInstanceId​(String rootProcessInstanceId)
      • getValue

        public Object getValue()
        The variable's value. Value differs depending on the variable's type and on the `disableCustomObjectDeserialization` parameter.
        Returns:
        value
      • setValue

        public void setValue​(Object value)
      • getValueInfo

        public Map<String,​Object> getValueInfo()
        A JSON object containing additional, value-type-dependent properties. For variables of type `Object`, the following properties are returned: * `objectTypeName`: A string representation of the object's type name. * `serializationDataFormat`: The serialization format used to store the variable.
        Returns:
        valueInfo
      • setValueInfo

        public void setValueInfo​(Map<String,​Object> valueInfo)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object