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

com.google.gerrit.entities.AutoValue_AccessSection Maven / Gradle / Ivy

There is a newer version: 3.10.1
Show newest version
package com.google.gerrit.entities;

import com.google.common.collect.ImmutableList;
import javax.annotation.processing.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_AccessSection extends AccessSection {

  private final String name;

  private final ImmutableList permissions;

  private AutoValue_AccessSection(
      String name,
      ImmutableList permissions) {
    this.name = name;
    this.permissions = permissions;
  }

  @Override
  public String getName() {
    return name;
  }

  @Override
  public ImmutableList getPermissions() {
    return permissions;
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof AccessSection) {
      AccessSection that = (AccessSection) o;
      return this.name.equals(that.getName())
          && this.permissions.equals(that.getPermissions());
    }
    return false;
  }

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

  @Override
  protected AccessSection.Builder autoToBuilder() {
    return new Builder(this);
  }

  static final class Builder extends AccessSection.Builder {
    private String name;
    private ImmutableList permissions;
    Builder() {
    }
    private Builder(AccessSection source) {
      this.name = source.getName();
      this.permissions = source.getPermissions();
    }
    @Override
    public AccessSection.Builder setName(String name) {
      if (name == null) {
        throw new NullPointerException("Null name");
      }
      this.name = name;
      return this;
    }
    @Override
    public String getName() {
      if (name == null) {
        throw new IllegalStateException("Property \"name\" has not been set");
      }
      return name;
    }
    @Override
    AccessSection.Builder setPermissions(ImmutableList permissions) {
      if (permissions == null) {
        throw new NullPointerException("Null permissions");
      }
      this.permissions = permissions;
      return this;
    }
    @Override
    protected ImmutableList getPermissions() {
      if (permissions == null) {
        throw new IllegalStateException("Property \"permissions\" has not been set");
      }
      return permissions;
    }
    @Override
    protected AccessSection autoBuild() {
      String missing = "";
      if (this.name == null) {
        missing += " name";
      }
      if (this.permissions == null) {
        missing += " permissions";
      }
      if (!missing.isEmpty()) {
        throw new IllegalStateException("Missing required properties:" + missing);
      }
      return new AutoValue_AccessSection(
          this.name,
          this.permissions);
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy