All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.camunda.operate.entities.JobEntity Maven / Gradle / Ivy

/*
 * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
 * one or more contributor license agreements. See the NOTICE file distributed
 * with this work for additional information regarding copyright ownership.
 * Licensed under the Camunda License 1.0. You may not use this file
 * except in compliance with the Camunda License 1.0.
 */
package io.camunda.operate.entities;

import java.time.OffsetDateTime;
import java.util.Map;
import java.util.Objects;

public class JobEntity extends OperateZeebeEntity {

  private Long processInstanceKey;
  private Long flowNodeInstanceId;
  private String flowNodeId;
  private String tenantId;
  private String type;
  private String worker;
  private Integer retries;
  private String state;
  private String errorMessage;
  private String errorCode;
  private OffsetDateTime deadline;
  private OffsetDateTime endTime;
  private Map customHeaders;
  private boolean jobFailedWithRetriesLeft;
  private String jobKind;

  private String listenerEventType;

  private Long position;

  public Long getProcessInstanceKey() {
    return processInstanceKey;
  }

  public JobEntity setProcessInstanceKey(final Long processInstanceKey) {
    this.processInstanceKey = processInstanceKey;
    return this;
  }

  public Long getFlowNodeInstanceId() {
    return flowNodeInstanceId;
  }

  public JobEntity setFlowNodeInstanceId(final Long flowNodeInstanceId) {
    this.flowNodeInstanceId = flowNodeInstanceId;
    return this;
  }

  public String getFlowNodeId() {
    return flowNodeId;
  }

  public JobEntity setFlowNodeId(final String flowNodeId) {
    this.flowNodeId = flowNodeId;
    return this;
  }

  public String getTenantId() {
    return tenantId;
  }

  public JobEntity setTenantId(final String tenantId) {
    this.tenantId = tenantId;
    return this;
  }

  public String getType() {
    return type;
  }

  public JobEntity setType(final String type) {
    this.type = type;
    return this;
  }

  public String getWorker() {
    return worker;
  }

  public JobEntity setWorker(final String worker) {
    this.worker = worker;
    return this;
  }

  public String getState() {
    return state;
  }

  public JobEntity setState(final String state) {
    this.state = state;
    return this;
  }

  public Integer getRetries() {
    return retries;
  }

  public JobEntity setRetries(final Integer retries) {
    this.retries = retries;
    return this;
  }

  public String getErrorMessage() {
    return errorMessage;
  }

  public JobEntity setErrorMessage(final String errorMessage) {
    this.errorMessage = errorMessage;
    return this;
  }

  public String getErrorCode() {
    return errorCode;
  }

  public JobEntity setErrorCode(final String errorCode) {
    this.errorCode = errorCode;
    return this;
  }

  public OffsetDateTime getDeadline() {
    return deadline;
  }

  public JobEntity setDeadline(final OffsetDateTime deadline) {
    this.deadline = deadline;
    return this;
  }

  public OffsetDateTime getEndTime() {
    return endTime;
  }

  public JobEntity setEndTime(final OffsetDateTime endTime) {
    this.endTime = endTime;
    return this;
  }

  public Map getCustomHeaders() {
    return customHeaders;
  }

  public JobEntity setCustomHeaders(final Map customHeaders) {
    this.customHeaders = customHeaders;
    return this;
  }

  public boolean isJobFailedWithRetriesLeft() {
    return jobFailedWithRetriesLeft;
  }

  public JobEntity setJobFailedWithRetriesLeft(final boolean jobFailedWithRetriesLeft) {
    this.jobFailedWithRetriesLeft = jobFailedWithRetriesLeft;
    return this;
  }

  public String getJobKind() {
    return jobKind;
  }

  public JobEntity setJobKind(final String jobKind) {
    this.jobKind = jobKind;
    return this;
  }

  public String getListenerEventType() {
    return listenerEventType;
  }

  public JobEntity setListenerEventType(final String listenerEventType) {
    this.listenerEventType = listenerEventType;
    return this;
  }

  public Long getPosition() {
    return position;
  }

  public JobEntity setPosition(final Long position) {
    this.position = position;
    return this;
  }

  @Override
  public int hashCode() {
    return Objects.hash(
        super.hashCode(),
        processInstanceKey,
        flowNodeInstanceId,
        flowNodeId,
        tenantId,
        type,
        worker,
        state,
        retries,
        errorMessage,
        errorCode,
        deadline,
        endTime,
        customHeaders,
        jobFailedWithRetriesLeft,
        jobKind,
        listenerEventType,
        position);
  }

  @Override
  public boolean equals(final Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    if (!super.equals(o)) {
      return false;
    }
    final JobEntity jobEntity = (JobEntity) o;
    return jobFailedWithRetriesLeft == jobEntity.jobFailedWithRetriesLeft
        && Objects.equals(processInstanceKey, jobEntity.processInstanceKey)
        && Objects.equals(flowNodeInstanceId, jobEntity.flowNodeInstanceId)
        && Objects.equals(flowNodeId, jobEntity.flowNodeId)
        && Objects.equals(tenantId, jobEntity.tenantId)
        && Objects.equals(type, jobEntity.type)
        && Objects.equals(worker, jobEntity.worker)
        && Objects.equals(state, jobEntity.state)
        && Objects.equals(retries, jobEntity.retries)
        && Objects.equals(errorMessage, jobEntity.errorMessage)
        && Objects.equals(errorCode, jobEntity.errorCode)
        && Objects.equals(deadline, jobEntity.deadline)
        && Objects.equals(endTime, jobEntity.endTime)
        && Objects.equals(customHeaders, jobEntity.customHeaders)
        && Objects.equals(jobKind, jobEntity.jobKind)
        && Objects.equals(listenerEventType, jobEntity.listenerEventType)
        && Objects.equals(position, jobEntity.position);
  }

  @Override
  public String toString() {
    return "JobEntity{"
        + "processInstanceKey="
        + processInstanceKey
        + ", flowNodeInstanceId="
        + flowNodeInstanceId
        + ", flowNodeId="
        + flowNodeId
        + ", tenantId='"
        + tenantId
        + '\''
        + ", type='"
        + type
        + '\''
        + ", worker='"
        + worker
        + '\''
        + ", retries="
        + retries
        + ", state='"
        + state
        + '\''
        + ", errorMessage='"
        + errorMessage
        + '\''
        + ", errorCode='"
        + errorCode
        + '\''
        + ", deadline="
        + deadline
        + ", endTime="
        + endTime
        + ", customHeaders="
        + customHeaders
        + ", jobFailedWithRetriesLeft="
        + jobFailedWithRetriesLeft
        + ", jobKind='"
        + jobKind
        + '\''
        + ", listenerEventType='"
        + listenerEventType
        + '\''
        + ", position="
        + position
        + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy