com.google.gerrit.server.account.externalids.$AutoValue_ExternalId_Key Maven / Gradle / Ivy
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;
}