shiver.me.timbers.aws.AutoScalingReplacingUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smt-cloudformation-objects Show documentation
Show all versions of smt-cloudformation-objects Show documentation
This library is a complete mapping of the AWS CloudFormation Resource Specification into Java objects. The
objects have been generated directly from the specification so should be a direct one to one mapping.
The newest version!
package shiver.me.timbers.aws;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonPropertyOrder({
"WillReplace"
})
public class AutoScalingReplacingUpdate {
@JsonProperty("WillReplace")
private Boolean willReplace;
@JsonIgnore
public Boolean getWillReplace() {
return willReplace;
}
@JsonIgnore
public void setWillReplace(Boolean willReplace) {
this.willReplace = willReplace;
}
public AutoScalingReplacingUpdate withWillReplace(Boolean willReplace) {
this.willReplace = willReplace;
return this;
}
@Override
public String toString() {
return new ToStringBuilder(this).append("willReplace", willReplace).toString();
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(willReplace).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof AutoScalingReplacingUpdate) == false) {
return false;
}
AutoScalingReplacingUpdate rhs = ((AutoScalingReplacingUpdate) other);
return new EqualsBuilder().append(willReplace, rhs.willReplace).isEquals();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy