io.alauda.kubernetes.api.model.ConditionFluentImpl Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.validation.Valid;
import io.alauda.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class ConditionFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements ConditionFluent{
private String lastAttempt;
private String message;
private String reason;
private String status;
private String type;
public ConditionFluentImpl(){
}
public ConditionFluentImpl(Condition instance){
this.withLastAttempt(instance.getLastAttempt());
this.withMessage(instance.getMessage());
this.withReason(instance.getReason());
this.withStatus(instance.getStatus());
this.withType(instance.getType());
}
public String getLastAttempt(){
return this.lastAttempt;
}
public A withLastAttempt(String lastAttempt){
this.lastAttempt=lastAttempt; return (A) this;
}
public Boolean hasLastAttempt(){
return this.lastAttempt!=null;
}
public String getMessage(){
return this.message;
}
public A withMessage(String message){
this.message=message; return (A) this;
}
public Boolean hasMessage(){
return this.message!=null;
}
public String getReason(){
return this.reason;
}
public A withReason(String reason){
this.reason=reason; return (A) this;
}
public Boolean hasReason(){
return this.reason!=null;
}
public String getStatus(){
return this.status;
}
public A withStatus(String status){
this.status=status; return (A) this;
}
public Boolean hasStatus(){
return this.status!=null;
}
public String getType(){
return this.type;
}
public A withType(String type){
this.type=type; return (A) this;
}
public Boolean hasType(){
return this.type!=null;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
ConditionFluentImpl that = (ConditionFluentImpl) o;
if (lastAttempt != null ? !lastAttempt.equals(that.lastAttempt) :that.lastAttempt != null) return false;
if (message != null ? !message.equals(that.message) :that.message != null) return false;
if (reason != null ? !reason.equals(that.reason) :that.reason != null) return false;
if (status != null ? !status.equals(that.status) :that.status != null) return false;
if (type != null ? !type.equals(that.type) :that.type != null) return false;
return true;
}
}