Class HistoricIncidentDto

java.lang.Object
org.camunda.community.rest.client.dto.HistoricIncidentDto

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-06-04T13:43:01.451833574Z[Etc/UTC]") public class HistoricIncidentDto extends Object
HistoricIncidentDto
  • Field Details

  • Constructor Details

    • HistoricIncidentDto

      public HistoricIncidentDto()
  • Method Details

    • id

      public HistoricIncidentDto id(String id)
    • getId

      @Nullable public String getId()
      The id of the incident.
      Returns:
      id
    • getId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getId_JsonNullable()
    • setId_JsonNullable

      public void setId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> id)
    • setId

      public void setId(String id)
    • processDefinitionKey

      public HistoricIncidentDto processDefinitionKey(String processDefinitionKey)
    • getProcessDefinitionKey

      @Nullable public String getProcessDefinitionKey()
      The key of the process definition this incident is associated with.
      Returns:
      processDefinitionKey
    • getProcessDefinitionKey_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessDefinitionKey_JsonNullable()
    • setProcessDefinitionKey_JsonNullable

      public void setProcessDefinitionKey_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processDefinitionKey)
    • setProcessDefinitionKey

      public void setProcessDefinitionKey(String processDefinitionKey)
    • processDefinitionId

      public HistoricIncidentDto processDefinitionId(String processDefinitionId)
    • getProcessDefinitionId

      @Nullable public String getProcessDefinitionId()
      The id of the process definition this incident is associated with.
      Returns:
      processDefinitionId
    • getProcessDefinitionId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessDefinitionId_JsonNullable()
    • setProcessDefinitionId_JsonNullable

      public void setProcessDefinitionId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processDefinitionId)
    • setProcessDefinitionId

      public void setProcessDefinitionId(String processDefinitionId)
    • processInstanceId

      public HistoricIncidentDto processInstanceId(String processInstanceId)
    • getProcessInstanceId

      @Nullable public String getProcessInstanceId()
      The key of the process definition this incident is associated with.
      Returns:
      processInstanceId
    • getProcessInstanceId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessInstanceId_JsonNullable()
    • setProcessInstanceId_JsonNullable

      public void setProcessInstanceId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processInstanceId)
    • setProcessInstanceId

      public void setProcessInstanceId(String processInstanceId)
    • executionId

      public HistoricIncidentDto executionId(String executionId)
    • getExecutionId

      @Nullable public String getExecutionId()
      The id of the execution this incident is associated with.
      Returns:
      executionId
    • getExecutionId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getExecutionId_JsonNullable()
    • setExecutionId_JsonNullable

      public void setExecutionId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> executionId)
    • setExecutionId

      public void setExecutionId(String executionId)
    • rootProcessInstanceId

      public HistoricIncidentDto rootProcessInstanceId(String rootProcessInstanceId)
    • getRootProcessInstanceId

      @Nullable public String getRootProcessInstanceId()
      The process instance id of the root process instance that initiated the process containing this incident.
      Returns:
      rootProcessInstanceId
    • getRootProcessInstanceId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getRootProcessInstanceId_JsonNullable()
    • setRootProcessInstanceId_JsonNullable

      public void setRootProcessInstanceId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> rootProcessInstanceId)
    • setRootProcessInstanceId

      public void setRootProcessInstanceId(String rootProcessInstanceId)
    • createTime

      public HistoricIncidentDto createTime(OffsetDateTime createTime)
    • getCreateTime

      @Nullable public OffsetDateTime getCreateTime()
      The time this incident happened. [Default format](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/) `yyyy-MM-dd'T'HH:mm:ss.SSSZ`.
      Returns:
      createTime
    • getCreateTime_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getCreateTime_JsonNullable()
    • setCreateTime_JsonNullable

      public void setCreateTime_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> createTime)
    • setCreateTime

      public void setCreateTime(OffsetDateTime createTime)
    • endTime

      public HistoricIncidentDto endTime(OffsetDateTime endTime)
    • getEndTime

      @Nullable public OffsetDateTime getEndTime()
      The time this incident has been deleted or resolved. [Default format](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/) `yyyy-MM-dd'T'HH:mm:ss.SSSZ`.
      Returns:
      endTime
    • getEndTime_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getEndTime_JsonNullable()
    • setEndTime_JsonNullable

      public void setEndTime_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> endTime)
    • setEndTime

      public void setEndTime(OffsetDateTime endTime)
    • removalTime

      public HistoricIncidentDto removalTime(OffsetDateTime removalTime)
    • getRemovalTime

      @Nullable public OffsetDateTime getRemovalTime()
      The time after which the incident should be removed by the History Cleanup job. [Default format](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/) `yyyy-MM-dd'T'HH:mm:ss.SSSZ`.
      Returns:
      removalTime
    • getRemovalTime_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getRemovalTime_JsonNullable()
    • setRemovalTime_JsonNullable

      public void setRemovalTime_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> removalTime)
    • setRemovalTime

      public void setRemovalTime(OffsetDateTime removalTime)
    • incidentType

      public HistoricIncidentDto incidentType(String incidentType)
    • getIncidentType

      @Nullable public String getIncidentType()
      The type of incident, for example: `failedJobs` will be returned in case of an incident which identified a failed job during the execution of a process instance. See the [User Guide](/manual/develop/user- guide/process-engine/incidents/#incident-types) for a list of incident types.
      Returns:
      incidentType
    • getIncidentType_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getIncidentType_JsonNullable()
    • setIncidentType_JsonNullable

      public void setIncidentType_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> incidentType)
    • setIncidentType

      public void setIncidentType(String incidentType)
    • activityId

      public HistoricIncidentDto activityId(String activityId)
    • getActivityId

      @Nullable public String getActivityId()
      The id of the activity this incident is associated with.
      Returns:
      activityId
    • getActivityId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getActivityId_JsonNullable()
    • setActivityId_JsonNullable

      public void setActivityId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> activityId)
    • setActivityId

      public void setActivityId(String activityId)
    • failedActivityId

      public HistoricIncidentDto failedActivityId(String failedActivityId)
    • getFailedActivityId

      @Nullable public String getFailedActivityId()
      The id of the activity on which the last exception occurred.
      Returns:
      failedActivityId
    • getFailedActivityId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getFailedActivityId_JsonNullable()
    • setFailedActivityId_JsonNullable

      public void setFailedActivityId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> failedActivityId)
    • setFailedActivityId

      public void setFailedActivityId(String failedActivityId)
    • causeIncidentId

      public HistoricIncidentDto causeIncidentId(String causeIncidentId)
    • getCauseIncidentId

      @Nullable public String getCauseIncidentId()
      The id of the associated cause incident which has been triggered.
      Returns:
      causeIncidentId
    • getCauseIncidentId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getCauseIncidentId_JsonNullable()
    • setCauseIncidentId_JsonNullable

      public void setCauseIncidentId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> causeIncidentId)
    • setCauseIncidentId

      public void setCauseIncidentId(String causeIncidentId)
    • rootCauseIncidentId

      public HistoricIncidentDto rootCauseIncidentId(String rootCauseIncidentId)
    • getRootCauseIncidentId

      @Nullable public String getRootCauseIncidentId()
      The id of the associated root cause incident which has been triggered.
      Returns:
      rootCauseIncidentId
    • getRootCauseIncidentId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getRootCauseIncidentId_JsonNullable()
    • setRootCauseIncidentId_JsonNullable

      public void setRootCauseIncidentId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> rootCauseIncidentId)
    • setRootCauseIncidentId

      public void setRootCauseIncidentId(String rootCauseIncidentId)
    • _configuration

      public HistoricIncidentDto _configuration(String _configuration)
    • getConfiguration

      @Nullable public String getConfiguration()
      The payload of this incident.
      Returns:
      _configuration
    • getConfiguration_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getConfiguration_JsonNullable()
    • setConfiguration_JsonNullable

      public void setConfiguration_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> _configuration)
    • setConfiguration

      public void setConfiguration(String _configuration)
    • historyConfiguration

      public HistoricIncidentDto historyConfiguration(String historyConfiguration)
    • getHistoryConfiguration

      @Nullable public String getHistoryConfiguration()
      The payload of this incident at the time when it occurred.
      Returns:
      historyConfiguration
    • getHistoryConfiguration_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getHistoryConfiguration_JsonNullable()
    • setHistoryConfiguration_JsonNullable

      public void setHistoryConfiguration_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> historyConfiguration)
    • setHistoryConfiguration

      public void setHistoryConfiguration(String historyConfiguration)
    • incidentMessage

      public HistoricIncidentDto incidentMessage(String incidentMessage)
    • getIncidentMessage

      @Nullable public String getIncidentMessage()
      The message of this incident.
      Returns:
      incidentMessage
    • getIncidentMessage_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getIncidentMessage_JsonNullable()
    • setIncidentMessage_JsonNullable

      public void setIncidentMessage_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> incidentMessage)
    • setIncidentMessage

      public void setIncidentMessage(String incidentMessage)
    • tenantId

      public HistoricIncidentDto tenantId(String tenantId)
    • getTenantId

      @Nullable public String getTenantId()
      The id of the tenant this incident is associated with.
      Returns:
      tenantId
    • getTenantId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTenantId_JsonNullable()
    • setTenantId_JsonNullable

      public void setTenantId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> tenantId)
    • setTenantId

      public void setTenantId(String tenantId)
    • jobDefinitionId

      public HistoricIncidentDto jobDefinitionId(String jobDefinitionId)
    • getJobDefinitionId

      @Nullable public String getJobDefinitionId()
      The job definition id the incident is associated with.
      Returns:
      jobDefinitionId
    • getJobDefinitionId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getJobDefinitionId_JsonNullable()
    • setJobDefinitionId_JsonNullable

      public void setJobDefinitionId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> jobDefinitionId)
    • setJobDefinitionId

      public void setJobDefinitionId(String jobDefinitionId)
    • open

      public HistoricIncidentDto open(Boolean open)
    • getOpen

      @Nullable public Boolean getOpen()
      If true, this incident is open.
      Returns:
      open
    • getOpen_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getOpen_JsonNullable()
    • setOpen_JsonNullable

      public void setOpen_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> open)
    • setOpen

      public void setOpen(Boolean open)
    • deleted

      public HistoricIncidentDto deleted(Boolean deleted)
    • getDeleted

      @Nullable public Boolean getDeleted()
      If true, this incident has been deleted.
      Returns:
      deleted
    • getDeleted_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getDeleted_JsonNullable()
    • setDeleted_JsonNullable

      public void setDeleted_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> deleted)
    • setDeleted

      public void setDeleted(Boolean deleted)
    • resolved

      public HistoricIncidentDto resolved(Boolean resolved)
    • getResolved

      @Nullable public Boolean getResolved()
      If true, this incident has been resolved.
      Returns:
      resolved
    • getResolved_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getResolved_JsonNullable()
    • setResolved_JsonNullable

      public void setResolved_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> resolved)
    • setResolved

      public void setResolved(Boolean resolved)
    • annotation

      public HistoricIncidentDto annotation(String annotation)
    • getAnnotation

      @Nullable public String getAnnotation()
      The annotation set to the incident.
      Returns:
      annotation
    • getAnnotation_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getAnnotation_JsonNullable()
    • setAnnotation_JsonNullable

      public void setAnnotation_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> annotation)
    • setAnnotation

      public void setAnnotation(String annotation)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toUrlQueryString

      public String toUrlQueryString()
      Convert the instance into URL query string.
      Returns:
      URL query string
    • toUrlQueryString

      public String toUrlQueryString(String prefix)
      Convert the instance into URL query string.
      Parameters:
      prefix - prefix of the query string
      Returns:
      URL query string