me.snowdrop.istio.mixer.adapter.statsd.StatsdFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.mixer.adapter.statsd;
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 StatsdFluentImpl> extends BaseFluent implements StatsdFluent{
private String apiVersion;
private String kind;
private ObjectMetaBuilder metadata;
private StatsdSpecBuilder spec;
public StatsdFluentImpl(){
}
public StatsdFluentImpl(Statsd 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 StatsdFluent.MetadataNested withNewMetadata(){
return new MetadataNestedImpl();
}
public StatsdFluent.MetadataNested withNewMetadataLike(ObjectMeta item){
return new MetadataNestedImpl(item);
}
public StatsdFluent.MetadataNested editMetadata(){
return withNewMetadataLike(getMetadata());
}
public StatsdFluent.MetadataNested editOrNewMetadata(){
return withNewMetadataLike(getMetadata() != null ? getMetadata(): new ObjectMetaBuilder().build());
}
public StatsdFluent.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 StatsdSpec getSpec(){
return this.spec!=null?this.spec.build():null;
}
public StatsdSpec buildSpec(){
return this.spec!=null?this.spec.build():null;
}
public A withSpec(StatsdSpec spec){
_visitables.remove(this.spec);
if (spec!=null){ this.spec= new StatsdSpecBuilder(spec); _visitables.add(this.spec);} return (A) this;
}
public Boolean hasSpec(){
return this.spec != null;
}
public StatsdFluent.SpecNested withNewSpec(){
return new SpecNestedImpl();
}
public StatsdFluent.SpecNested withNewSpecLike(StatsdSpec item){
return new SpecNestedImpl(item);
}
public StatsdFluent.SpecNested editSpec(){
return withNewSpecLike(getSpec());
}
public StatsdFluent.SpecNested editOrNewSpec(){
return withNewSpecLike(getSpec() != null ? getSpec(): new StatsdSpecBuilder().build());
}
public StatsdFluent.SpecNested editOrNewSpecLike(StatsdSpec 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;
StatsdFluentImpl that = (StatsdFluentImpl) 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 StatsdFluent.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) StatsdFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata(){
return and();
}
}
public class SpecNestedImpl extends StatsdSpecFluentImpl> implements StatsdFluent.SpecNested,Nested{
private final StatsdSpecBuilder builder;
SpecNestedImpl(StatsdSpec item){
this.builder = new StatsdSpecBuilder(this, item);
}
SpecNestedImpl(){
this.builder = new StatsdSpecBuilder(this);
}
public N and(){
return (N) StatsdFluentImpl.this.withSpec(builder.build());
}
public N endSpec(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy