
org.jclouds.azurecompute.arm.domain.AutoValue_Certificate_SecretProperties 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_Certificate_SecretProperties extends Certificate.SecretProperties {
private final String contentType;
AutoValue_Certificate_SecretProperties(
String contentType) {
if (contentType == null) {
throw new NullPointerException("Null contentType");
}
this.contentType = contentType;
}
@Override
public String contentType() {
return contentType;
}
@Override
public String toString() {
return "SecretProperties{"
+ "contentType=" + contentType
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Certificate.SecretProperties) {
Certificate.SecretProperties that = (Certificate.SecretProperties) o;
return (this.contentType.equals(that.contentType()));
}
return false;
}
@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= this.contentType.hashCode();
return h;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy