
org.jclouds.azurecompute.arm.domain.AutoValue_KeyVaultReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-shaded Show documentation
Show all versions of jclouds-shaded Show documentation
Provides a shaded jclouds with relocated guava and guice
The newest version!
package org.jclouds.azurecompute.arm.domain;
import javax.annotation.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_KeyVaultReference extends KeyVaultReference {
private final KeyVaultReference.Reference reference;
AutoValue_KeyVaultReference(
KeyVaultReference.Reference reference) {
if (reference == null) {
throw new NullPointerException("Null reference");
}
this.reference = reference;
}
@Override
public KeyVaultReference.Reference reference() {
return reference;
}
@Override
public String toString() {
return "KeyVaultReference{"
+ "reference=" + reference
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof KeyVaultReference) {
KeyVaultReference that = (KeyVaultReference) o;
return (this.reference.equals(that.reference()));
}
return false;
}
@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= this.reference.hashCode();
return h;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy