
io.kubernetes.client.models.V1ConfigMapNodeConfigSourceFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class V1ConfigMapNodeConfigSourceFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ConfigMapNodeConfigSourceFluent{
private String kubeletConfigKey;
private String name;
private String namespace;
private String resourceVersion;
private String uid;
public V1ConfigMapNodeConfigSourceFluentImpl(){
}
public V1ConfigMapNodeConfigSourceFluentImpl(V1ConfigMapNodeConfigSource instance){
this.withKubeletConfigKey(instance.getKubeletConfigKey());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withResourceVersion(instance.getResourceVersion());
this.withUid(instance.getUid());
}
public String getKubeletConfigKey(){
return this.kubeletConfigKey;
}
public A withKubeletConfigKey(String kubeletConfigKey){
this.kubeletConfigKey=kubeletConfigKey; return (A) this;
}
public Boolean hasKubeletConfigKey(){
return this.kubeletConfigKey != 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 getResourceVersion(){
return this.resourceVersion;
}
public A withResourceVersion(String resourceVersion){
this.resourceVersion=resourceVersion; return (A) this;
}
public Boolean hasResourceVersion(){
return this.resourceVersion != null;
}
public String getUid(){
return this.uid;
}
public A withUid(String uid){
this.uid=uid; return (A) this;
}
public Boolean hasUid(){
return this.uid != 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;
V1ConfigMapNodeConfigSourceFluentImpl that = (V1ConfigMapNodeConfigSourceFluentImpl) o;
if (kubeletConfigKey != null ? !kubeletConfigKey.equals(that.kubeletConfigKey) :that.kubeletConfigKey != 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 (resourceVersion != null ? !resourceVersion.equals(that.resourceVersion) :that.resourceVersion != null) return false;
if (uid != null ? !uid.equals(that.uid) :that.uid != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy