
org.jclouds.azurecompute.arm.domain.AutoValue_Resource_ResourceProperties 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_Resource_ResourceProperties extends Resource.ResourceProperties {
private final String provisioningState;
AutoValue_Resource_ResourceProperties(
@Nullable String provisioningState) {
this.provisioningState = provisioningState;
}
@Nullable
@Override
public String provisioningState() {
return provisioningState;
}
@Override
public String toString() {
return "ResourceProperties{"
+ "provisioningState=" + provisioningState
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Resource.ResourceProperties) {
Resource.ResourceProperties that = (Resource.ResourceProperties) o;
return ((this.provisioningState == null) ? (that.provisioningState() == null) : this.provisioningState.equals(that.provisioningState()));
}
return false;
}
@Override
public int hashCode() {
int h = 1;
h *= 1000003;
h ^= (provisioningState == null) ? 0 : this.provisioningState.hashCode();
return h;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy