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

com.google.gerrit.server.account.AutoValue_CachedAccountDetails_Key Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc7
Show newest version
package com.google.gerrit.server.account;

import com.google.gerrit.entities.Account;
import javax.annotation.processing.Generated;
import org.eclipse.jgit.lib.ObjectId;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_CachedAccountDetails_Key extends CachedAccountDetails.Key {

  private final Account.Id accountId;

  private final ObjectId id;

  AutoValue_CachedAccountDetails_Key(
      Account.Id accountId,
      ObjectId id) {
    if (accountId == null) {
      throw new NullPointerException("Null accountId");
    }
    this.accountId = accountId;
    if (id == null) {
      throw new NullPointerException("Null id");
    }
    this.id = id;
  }

  @Override
  Account.Id accountId() {
    return accountId;
  }

  @Override
  ObjectId id() {
    return id;
  }

  @Override
  public String toString() {
    return "Key{"
        + "accountId=" + accountId + ", "
        + "id=" + id
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof CachedAccountDetails.Key) {
      CachedAccountDetails.Key that = (CachedAccountDetails.Key) o;
      return this.accountId.equals(that.accountId())
          && this.id.equals(that.id());
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= accountId.hashCode();
    h$ *= 1000003;
    h$ ^= id.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy