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

io.camunda.operate.webapp.api.v1.entities.SequenceFlow Maven / Gradle / Ivy

The newest version!
/*
 * 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.webapp.api.v1.entities;

import com.fasterxml.jackson.annotation.JsonInclude;
import io.camunda.operate.schema.templates.SequenceFlowTemplate;
import java.util.Objects;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class SequenceFlow {

  public static final String ID = SequenceFlowTemplate.ID,
      ACTIVITY_ID = SequenceFlowTemplate.ACTIVITY_ID,
      PROCESS_INSTANCE_KEY = SequenceFlowTemplate.PROCESS_INSTANCE_KEY,
      TENANT_ID = SequenceFlowTemplate.TENANT_ID;

  private String id;
  private String activityId;
  private Long processInstanceKey;
  private String tenantId;

  public SequenceFlow() {}

  public String getId() {
    return id;
  }

  public SequenceFlow setId(String id) {
    this.id = id;
    return this;
  }

  public String getActivityId() {
    return activityId;
  }

  public SequenceFlow setActivityId(String activityId) {
    this.activityId = activityId;
    return this;
  }

  public Long getProcessInstanceKey() {
    return processInstanceKey;
  }

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

  public String getTenantId() {
    return tenantId;
  }

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

  @Override
  public int hashCode() {
    return Objects.hash(id, activityId, processInstanceKey, tenantId);
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    final SequenceFlow that = (SequenceFlow) o;
    return Objects.equals(id, that.id)
        && Objects.equals(activityId, that.activityId)
        && Objects.equals(processInstanceKey, that.processInstanceKey)
        && Objects.equals(tenantId, that.tenantId);
  }

  @Override
  public String toString() {
    return "SequenceFlow{"
        + "id='"
        + id
        + '\''
        + ", activityId='"
        + activityId
        + '\''
        + ", processInstanceKey="
        + processInstanceKey
        + ", tenantId='"
        + tenantId
        + '\''
        + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy