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

io.camunda.operate.entities.OperateZeebeEntity 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;

public abstract class OperateZeebeEntity> extends OperateEntity {

  private long key;

  private int partitionId;

  public long getKey() {
    return key;
  }

  public T setKey(long key) {
    this.key = key;
    return (T) this;
  }

  public int getPartitionId() {
    return partitionId;
  }

  public T setPartitionId(int partitionId) {
    this.partitionId = partitionId;
    return (T) this;
  }

  @Override
  public int hashCode() {
    int result = super.hashCode();
    result = 31 * result + (int) (key ^ (key >>> 32));
    result = 31 * result + partitionId;
    return result;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    if (!super.equals(o)) {
      return false;
    }

    final OperateZeebeEntity that = (OperateZeebeEntity) o;

    if (key != that.key) {
      return false;
    }
    return partitionId == that.partitionId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy