
io.kubernetes.client.models.V1beta1TokenReviewSpecFluentImpl 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 V1beta1TokenReviewSpecFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1beta1TokenReviewSpecFluent{
private String token;
public V1beta1TokenReviewSpecFluentImpl(){
}
public V1beta1TokenReviewSpecFluentImpl(V1beta1TokenReviewSpec instance){
this.withToken(instance.getToken());
}
public String getToken(){
return this.token;
}
public A withToken(String token){
this.token=token; return (A) this;
}
public Boolean hasToken(){
return this.token != 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;
V1beta1TokenReviewSpecFluentImpl that = (V1beta1TokenReviewSpecFluentImpl) o;
if (token != null ? !token.equals(that.token) :that.token != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy