annotations.io.alauda.kubernetes.api.model.BindingConditionFluentImpl 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 BindingConditionFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements BindingConditionFluent{
private String lastAttempt;
private String message;
private String name;
private String namespace;
private String reason;
private String status;
private String type;
public BindingConditionFluentImpl(){
}
public BindingConditionFluentImpl(BindingCondition instance){
this.withLastAttempt(instance.getLastAttempt());
this.withMessage(instance.getMessage());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
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 getName(){
return this.name;
}
public A withName(String name){
this.name=name; return (A) this;
}
public Boolean hasName(){
return this.name!=null;
}
public String getNamespace(){
return this.namespace;
}
public A withNamespace(String namespace){
this.namespace=namespace; return (A) this;
}
public Boolean hasNamespace(){
return this.namespace!=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;
BindingConditionFluentImpl that = (BindingConditionFluentImpl) 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 (name != null ? !name.equals(that.name) :that.name != null) return false;
if (namespace != null ? !namespace.equals(that.namespace) :that.namespace != 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;
}
}