com.google.gerrit.server.account.AutoValue_AccountState Maven / Gradle / Ivy
package com.google.gerrit.server.account;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.gerrit.entities.Account;
import com.google.gerrit.entities.NotifyConfig;
import com.google.gerrit.server.account.externalids.ExternalId;
import com.google.gerrit.server.config.CachedPreferences;
import java.util.Optional;
import javax.annotation.processing.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_AccountState extends AccountState {
private final Account account;
private final ImmutableSet externalIds;
private final Optional userName;
private final ImmutableMap> projectWatches;
private final Optional defaultPreferences;
private final Optional userPreferences;
AutoValue_AccountState(
Account account,
ImmutableSet externalIds,
Optional userName,
ImmutableMap> projectWatches,
Optional defaultPreferences,
Optional userPreferences) {
if (account == null) {
throw new NullPointerException("Null account");
}
this.account = account;
if (externalIds == null) {
throw new NullPointerException("Null externalIds");
}
this.externalIds = externalIds;
if (userName == null) {
throw new NullPointerException("Null userName");
}
this.userName = userName;
if (projectWatches == null) {
throw new NullPointerException("Null projectWatches");
}
this.projectWatches = projectWatches;
if (defaultPreferences == null) {
throw new NullPointerException("Null defaultPreferences");
}
this.defaultPreferences = defaultPreferences;
if (userPreferences == null) {
throw new NullPointerException("Null userPreferences");
}
this.userPreferences = userPreferences;
}
@Override
public Account account() {
return account;
}
@Override
public ImmutableSet externalIds() {
return externalIds;
}
@Override
public Optional userName() {
return userName;
}
@Override
public ImmutableMap> projectWatches() {
return projectWatches;
}
@Override
public Optional defaultPreferences() {
return defaultPreferences;
}
@Override
public Optional userPreferences() {
return userPreferences;
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof AccountState) {
AccountState that = (AccountState) o;
return this.account.equals(that.account())
&& this.externalIds.equals(that.externalIds())
&& this.userName.equals(that.userName())
&& this.projectWatches.equals(that.projectWatches())
&& this.defaultPreferences.equals(that.defaultPreferences())
&& this.userPreferences.equals(that.userPreferences());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= account.hashCode();
h$ *= 1000003;
h$ ^= externalIds.hashCode();
h$ *= 1000003;
h$ ^= userName.hashCode();
h$ *= 1000003;
h$ ^= projectWatches.hashCode();
h$ *= 1000003;
h$ ^= defaultPreferences.hashCode();
h$ *= 1000003;
h$ ^= userPreferences.hashCode();
return h$;
}
}