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

com.google.gerrit.server.account.externalids.$AutoValue_ExternalId_Key Maven / Gradle / Ivy

There is a newer version: 3.11.0-rc3
Show newest version
package com.google.gerrit.server.account.externalids;

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

@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_ExternalId_Key extends ExternalId.Key {

  private final String scheme;

  private final String id;

  private final boolean isCaseInsensitive;

  $AutoValue_ExternalId_Key(
      @Nullable String scheme,
      String id,
      boolean isCaseInsensitive) {
    this.scheme = scheme;
    if (id == null) {
      throw new NullPointerException("Null id");
    }
    this.id = id;
    this.isCaseInsensitive = isCaseInsensitive;
  }

  @Nullable
  @Override
  public String scheme() {
    return scheme;
  }

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

  @Override
  public boolean isCaseInsensitive() {
    return isCaseInsensitive;
  }

  private static final long serialVersionUID = 1L;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy