io.alauda.kubernetes.api.model.JenkinsAgentFluentImpl Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class JenkinsAgentFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements JenkinsAgentFluent{
private String label;
public JenkinsAgentFluentImpl(){
}
public JenkinsAgentFluentImpl(JenkinsAgent instance){
this.withLabel(instance.getLabel());
}
public String getLabel(){
return this.label;
}
public A withLabel(String label){
this.label=label; return (A) this;
}
public Boolean hasLabel(){
return this.label!=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;
JenkinsAgentFluentImpl that = (JenkinsAgentFluentImpl) o;
if (label != null ? !label.equals(that.label) :that.label != null) return false;
return true;
}
}