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

com.google.gerrit.server.group.db.AutoValue_AuditLogReader_ParsedCommit Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc4
Show newest version


package com.google.gerrit.server.group.db;

import com.google.common.collect.ImmutableList;
import com.google.gerrit.reviewdb.client.Account;
import com.google.gerrit.reviewdb.client.AccountGroup;
import java.sql.Timestamp;
import javax.annotation.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_AuditLogReader_ParsedCommit extends AuditLogReader.ParsedCommit {

  private final Account.Id authorId;

  private final Timestamp when;

  private final ImmutableList addedMembers;

  private final ImmutableList removedMembers;

  private final ImmutableList addedSubgroups;

  private final ImmutableList removedSubgroups;

  AutoValue_AuditLogReader_ParsedCommit(
      Account.Id authorId,
      Timestamp when,
      ImmutableList addedMembers,
      ImmutableList removedMembers,
      ImmutableList addedSubgroups,
      ImmutableList removedSubgroups) {
    if (authorId == null) {
      throw new NullPointerException("Null authorId");
    }
    this.authorId = authorId;
    if (when == null) {
      throw new NullPointerException("Null when");
    }
    this.when = when;
    if (addedMembers == null) {
      throw new NullPointerException("Null addedMembers");
    }
    this.addedMembers = addedMembers;
    if (removedMembers == null) {
      throw new NullPointerException("Null removedMembers");
    }
    this.removedMembers = removedMembers;
    if (addedSubgroups == null) {
      throw new NullPointerException("Null addedSubgroups");
    }
    this.addedSubgroups = addedSubgroups;
    if (removedSubgroups == null) {
      throw new NullPointerException("Null removedSubgroups");
    }
    this.removedSubgroups = removedSubgroups;
  }

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

  @Override
  Timestamp when() {
    return when;
  }

  @Override
  ImmutableList addedMembers() {
    return addedMembers;
  }

  @Override
  ImmutableList removedMembers() {
    return removedMembers;
  }

  @Override
  ImmutableList addedSubgroups() {
    return addedSubgroups;
  }

  @Override
  ImmutableList removedSubgroups() {
    return removedSubgroups;
  }

  @Override
  public String toString() {
    return "ParsedCommit{"
         + "authorId=" + authorId + ", "
         + "when=" + when + ", "
         + "addedMembers=" + addedMembers + ", "
         + "removedMembers=" + removedMembers + ", "
         + "addedSubgroups=" + addedSubgroups + ", "
         + "removedSubgroups=" + removedSubgroups
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof AuditLogReader.ParsedCommit) {
      AuditLogReader.ParsedCommit that = (AuditLogReader.ParsedCommit) o;
      return (this.authorId.equals(that.authorId()))
           && (this.when.equals(that.when()))
           && (this.addedMembers.equals(that.addedMembers()))
           && (this.removedMembers.equals(that.removedMembers()))
           && (this.addedSubgroups.equals(that.addedSubgroups()))
           && (this.removedSubgroups.equals(that.removedSubgroups()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= authorId.hashCode();
    h$ *= 1000003;
    h$ ^= when.hashCode();
    h$ *= 1000003;
    h$ ^= addedMembers.hashCode();
    h$ *= 1000003;
    h$ ^= removedMembers.hashCode();
    h$ *= 1000003;
    h$ ^= addedSubgroups.hashCode();
    h$ *= 1000003;
    h$ ^= removedSubgroups.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy