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

org.graylog2.audit.$AutoValue_AuditActor Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.audit;

import javax.annotation.processing.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_AuditActor extends AuditActor {

  private final String urn;

  $AutoValue_AuditActor(
      String urn) {
    if (urn == null) {
      throw new NullPointerException("Null urn");
    }
    this.urn = urn;
  }

  @Override
  public String urn() {
    return urn;
  }

  @Override
  public String toString() {
    return "AuditActor{"
        + "urn=" + urn
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof AuditActor) {
      AuditActor that = (AuditActor) o;
      return this.urn.equals(that.urn());
    }
    return false;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy