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

com.google.gerrit.entities.$AutoValue_GroupReference Maven / Gradle / Ivy

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

import com.google.gerrit.common.Nullable;
import javax.annotation.processing.Generated;

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

  private final AccountGroup.UUID UUID;

  private final String name;

  $AutoValue_GroupReference(
      @Nullable AccountGroup.UUID UUID,
      String name) {
    this.UUID = UUID;
    if (name == null) {
      throw new NullPointerException("Null name");
    }
    this.name = name;
  }

  @Nullable
  @Override
  public AccountGroup.UUID getUUID() {
    return UUID;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy