
org.jclouds.azurecompute.arm.domain.AutoValue_VaultCertificate 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;
import org.jclouds.javax.annotation.Nullable;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_VaultCertificate extends VaultCertificate {
private final String certificateUrl;
private final String certificateStore;
AutoValue_VaultCertificate(
String certificateUrl,
@Nullable String certificateStore) {
if (certificateUrl == null) {
throw new NullPointerException("Null certificateUrl");
}
this.certificateUrl = certificateUrl;
this.certificateStore = certificateStore;
}
@Override
public String certificateUrl() {
return certificateUrl;
}
@Nullable
@Override
public String certificateStore() {
return certificateStore;
}
@Override
public String toString() {
return "VaultCertificate{"
+ "certificateUrl=" + certificateUrl + ", "
+ "certificateStore=" + certificateStore
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof VaultCertificate) {
VaultCertificate that = (VaultCertificate) o;
return (this.certificateUrl.equals(that.certificateUrl()))
&& ((this.certificateStore == null) ? (that.certificateStore() == null) : this.certificateStore.equals(that.certificateStore()));
}
return false;
}
@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= this.certificateUrl.hashCode();
h *= 1000003;
h ^= (certificateStore == null) ? 0 : this.certificateStore.hashCode();
return h;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy