
io.kubernetes.client.models.V1beta1NonResourceAttributesFluentImpl 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 V1beta1NonResourceAttributesFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1beta1NonResourceAttributesFluent{
private String path;
private String verb;
public V1beta1NonResourceAttributesFluentImpl(){
}
public V1beta1NonResourceAttributesFluentImpl(V1beta1NonResourceAttributes instance){
this.withPath(instance.getPath());
this.withVerb(instance.getVerb());
}
public String getPath(){
return this.path;
}
public A withPath(String path){
this.path=path; return (A) this;
}
public Boolean hasPath(){
return this.path != null;
}
public String getVerb(){
return this.verb;
}
public A withVerb(String verb){
this.verb=verb; return (A) this;
}
public Boolean hasVerb(){
return this.verb != 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;
V1beta1NonResourceAttributesFluentImpl that = (V1beta1NonResourceAttributesFluentImpl) o;
if (path != null ? !path.equals(that.path) :that.path != null) return false;
if (verb != null ? !verb.equals(that.verb) :that.verb != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy