me.snowdrop.istio.mixer.template.reportnothing.ReportNothingFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.mixer.template.reportnothing;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.model.ObjectMetaFluentImpl;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.model.validators.CheckObjectMeta;
import java.lang.String;
import io.fabric8.kubernetes.api.model.ObjectMetaBuilder;
import javax.validation.constraints.NotNull;
import java.lang.Deprecated;
import javax.validation.Valid;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class ReportNothingFluentImpl> extends BaseFluent implements ReportNothingFluent{
private String apiVersion;
private String kind;
private ObjectMetaBuilder metadata;
private ReportNothingSpecBuilder spec;
public ReportNothingFluentImpl(){
}
public ReportNothingFluentImpl(ReportNothing instance){
this.withApiVersion(instance.getApiVersion());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
}
public String getApiVersion(){
return this.apiVersion;
}
public A withApiVersion(String apiVersion){
this.apiVersion=apiVersion; return (A) this;
}
public Boolean hasApiVersion(){
return this.apiVersion != null;
}
public String getKind(){
return this.kind;
}
public A withKind(String kind){
this.kind=kind; return (A) this;
}
public Boolean hasKind(){
return this.kind != null;
}
/**
* This method has been deprecated, please use method buildMetadata instead.
* @return The buildable object.
*/
@Deprecated public ObjectMeta getMetadata(){
return this.metadata!=null?this.metadata.build():null;
}
public ObjectMeta buildMetadata(){
return this.metadata!=null?this.metadata.build():null;
}
public A withMetadata(ObjectMeta metadata){
_visitables.remove(this.metadata);
if (metadata!=null){ this.metadata= new ObjectMetaBuilder(metadata); _visitables.add(this.metadata);} return (A) this;
}
public Boolean hasMetadata(){
return this.metadata != null;
}
public ReportNothingFluent.MetadataNested withNewMetadata(){
return new MetadataNestedImpl();
}
public ReportNothingFluent.MetadataNested withNewMetadataLike(ObjectMeta item){
return new MetadataNestedImpl(item);
}
public ReportNothingFluent.MetadataNested editMetadata(){
return withNewMetadataLike(getMetadata());
}
public ReportNothingFluent.MetadataNested editOrNewMetadata(){
return withNewMetadataLike(getMetadata() != null ? getMetadata(): new ObjectMetaBuilder().build());
}
public ReportNothingFluent.MetadataNested editOrNewMetadataLike(ObjectMeta item){
return withNewMetadataLike(getMetadata() != null ? getMetadata(): item);
}
/**
* This method has been deprecated, please use method buildSpec instead.
* @return The buildable object.
*/
@Deprecated public ReportNothingSpec getSpec(){
return this.spec!=null?this.spec.build():null;
}
public ReportNothingSpec buildSpec(){
return this.spec!=null?this.spec.build():null;
}
public A withSpec(ReportNothingSpec spec){
_visitables.remove(this.spec);
if (spec!=null){ this.spec= new ReportNothingSpecBuilder(spec); _visitables.add(this.spec);} return (A) this;
}
public Boolean hasSpec(){
return this.spec != null;
}
public A withNewSpec(String name){
return (A)withSpec(new ReportNothingSpec(name));
}
public ReportNothingFluent.SpecNested withNewSpec(){
return new SpecNestedImpl();
}
public ReportNothingFluent.SpecNested withNewSpecLike(ReportNothingSpec item){
return new SpecNestedImpl(item);
}
public ReportNothingFluent.SpecNested editSpec(){
return withNewSpecLike(getSpec());
}
public ReportNothingFluent.SpecNested editOrNewSpec(){
return withNewSpecLike(getSpec() != null ? getSpec(): new ReportNothingSpecBuilder().build());
}
public ReportNothingFluent.SpecNested editOrNewSpecLike(ReportNothingSpec item){
return withNewSpecLike(getSpec() != null ? getSpec(): item);
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
ReportNothingFluentImpl that = (ReportNothingFluentImpl) o;
if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
if (spec != null ? !spec.equals(that.spec) :that.spec != null) return false;
return true;
}
public class MetadataNestedImpl extends ObjectMetaFluentImpl> implements ReportNothingFluent.MetadataNested,Nested{
private final ObjectMetaBuilder builder;
MetadataNestedImpl(ObjectMeta item){
this.builder = new ObjectMetaBuilder(this, item);
}
MetadataNestedImpl(){
this.builder = new ObjectMetaBuilder(this);
}
public N and(){
return (N) ReportNothingFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata(){
return and();
}
}
public class SpecNestedImpl extends ReportNothingSpecFluentImpl> implements ReportNothingFluent.SpecNested,Nested{
private final ReportNothingSpecBuilder builder;
SpecNestedImpl(ReportNothingSpec item){
this.builder = new ReportNothingSpecBuilder(this, item);
}
SpecNestedImpl(){
this.builder = new ReportNothingSpecBuilder(this);
}
public N and(){
return (N) ReportNothingFluentImpl.this.withSpec(builder.build());
}
public N endSpec(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy