io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.flowcontrol.v1beta1;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectMetaFluentImpl;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import io.fabric8.kubernetes.api.model.ObjectMetaBuilder;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class FlowSchemaFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent {
private java.lang.String apiVersion;
private java.lang.String kind;
private io.fabric8.kubernetes.api.model.ObjectMetaBuilder metadata;
private io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpecBuilder spec;
private io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatusBuilder status;
public FlowSchemaFluentImpl() {
}
public FlowSchemaFluentImpl(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchema instance) {
this.withApiVersion(instance.getApiVersion());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
this.withStatus(instance.getStatus());
}
public java.lang.String getApiVersion() {
return this.apiVersion;
}
public A withApiVersion(java.lang.String apiVersion) {
this.apiVersion=apiVersion; return (A) this;
}
public java.lang.Boolean hasApiVersion() {
return this.apiVersion != null;
}
@java.lang.Deprecated
/**
* Method is deprecated. use withApiVersion instead.
*/
public A withNewApiVersion(java.lang.String arg0) {
return (A)withApiVersion(new String(arg0));
}
public java.lang.String getKind() {
return this.kind;
}
public A withKind(java.lang.String kind) {
this.kind=kind; return (A) this;
}
public java.lang.Boolean hasKind() {
return this.kind != null;
}
@java.lang.Deprecated
/**
* Method is deprecated. use withKind instead.
*/
public A withNewKind(java.lang.String arg0) {
return (A)withKind(new String(arg0));
}
@java.lang.Deprecated
/**
* This method has been deprecated, please use method buildMetadata instead.
* @return The buildable object.
*/
public io.fabric8.kubernetes.api.model.ObjectMeta getMetadata() {
return this.metadata!=null?this.metadata.build():null;
}
public io.fabric8.kubernetes.api.model.ObjectMeta buildMetadata() {
return this.metadata!=null?this.metadata.build():null;
}
public A withMetadata(io.fabric8.kubernetes.api.model.ObjectMeta metadata) {
_visitables.get("metadata").remove(this.metadata);
if (metadata!=null){ this.metadata= new io.fabric8.kubernetes.api.model.ObjectMetaBuilder(metadata); _visitables.get("metadata").add(this.metadata);} return (A) this;
}
public java.lang.Boolean hasMetadata() {
return this.metadata != null;
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.MetadataNested withNewMetadata() {
return new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluentImpl.MetadataNestedImpl();
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.MetadataNested withNewMetadataLike(io.fabric8.kubernetes.api.model.ObjectMeta item) {
return new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluentImpl.MetadataNestedImpl(item);
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.MetadataNested editMetadata() {
return withNewMetadataLike(getMetadata());
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.MetadataNested editOrNewMetadata() {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): new io.fabric8.kubernetes.api.model.ObjectMetaBuilder().build());
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.MetadataNested editOrNewMetadataLike(io.fabric8.kubernetes.api.model.ObjectMeta item) {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): item);
}
@java.lang.Deprecated
/**
* This method has been deprecated, please use method buildSpec instead.
* @return The buildable object.
*/
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpec getSpec() {
return this.spec!=null?this.spec.build():null;
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpec buildSpec() {
return this.spec!=null?this.spec.build():null;
}
public A withSpec(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpec spec) {
_visitables.get("spec").remove(this.spec);
if (spec!=null){ this.spec= new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpecBuilder(spec); _visitables.get("spec").add(this.spec);} return (A) this;
}
public java.lang.Boolean hasSpec() {
return this.spec != null;
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.SpecNested withNewSpec() {
return new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluentImpl.SpecNestedImpl();
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.SpecNested withNewSpecLike(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpec item) {
return new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluentImpl.SpecNestedImpl(item);
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.SpecNested editSpec() {
return withNewSpecLike(getSpec());
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.SpecNested editOrNewSpec() {
return withNewSpecLike(getSpec() != null ? getSpec(): new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpecBuilder().build());
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.SpecNested editOrNewSpecLike(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpec item) {
return withNewSpecLike(getSpec() != null ? getSpec(): item);
}
@java.lang.Deprecated
/**
* This method has been deprecated, please use method buildStatus instead.
* @return The buildable object.
*/
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatus getStatus() {
return this.status!=null?this.status.build():null;
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatus buildStatus() {
return this.status!=null?this.status.build():null;
}
public A withStatus(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatus status) {
_visitables.get("status").remove(this.status);
if (status!=null){ this.status= new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatusBuilder(status); _visitables.get("status").add(this.status);} return (A) this;
}
public java.lang.Boolean hasStatus() {
return this.status != null;
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.StatusNested withNewStatus() {
return new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluentImpl.StatusNestedImpl();
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.StatusNested withNewStatusLike(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatus item) {
return new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluentImpl.StatusNestedImpl(item);
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.StatusNested editStatus() {
return withNewStatusLike(getStatus());
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.StatusNested editOrNewStatus() {
return withNewStatusLike(getStatus() != null ? getStatus(): new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatusBuilder().build());
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.StatusNested editOrNewStatusLike(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatus item) {
return withNewStatusLike(getStatus() != null ? getStatus(): item);
}
public boolean equals(java.lang.Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
FlowSchemaFluentImpl that = (FlowSchemaFluentImpl) 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;
if (status != null ? !status.equals(that.status) :that.status != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(apiVersion, kind, metadata, spec, status, super.hashCode());
}
public class MetadataNestedImpl extends io.fabric8.kubernetes.api.model.ObjectMetaFluentImpl> implements io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.MetadataNested,io.fabric8.kubernetes.api.builder.Nested {
private final io.fabric8.kubernetes.api.model.ObjectMetaBuilder builder;
MetadataNestedImpl(io.fabric8.kubernetes.api.model.ObjectMeta item) {
this.builder = new io.fabric8.kubernetes.api.model.ObjectMetaBuilder(this, item);
}
MetadataNestedImpl() {
this.builder = new io.fabric8.kubernetes.api.model.ObjectMetaBuilder(this);
}
public N and() {
return (N) FlowSchemaFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
public class SpecNestedImpl extends io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpecFluentImpl> implements io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.SpecNested,io.fabric8.kubernetes.api.builder.Nested {
private final io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpecBuilder builder;
SpecNestedImpl(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpec item) {
this.builder = new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpecBuilder(this, item);
}
SpecNestedImpl() {
this.builder = new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaSpecBuilder(this);
}
public N and() {
return (N) FlowSchemaFluentImpl.this.withSpec(builder.build());
}
public N endSpec() {
return and();
}
}
public class StatusNestedImpl extends io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatusFluentImpl> implements io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaFluent.StatusNested,io.fabric8.kubernetes.api.builder.Nested {
private final io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatusBuilder builder;
StatusNestedImpl(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatus item) {
this.builder = new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatusBuilder(this, item);
}
StatusNestedImpl() {
this.builder = new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowSchemaStatusBuilder(this);
}
public N and() {
return (N) FlowSchemaFluentImpl.this.withStatus(builder.build());
}
public N endStatus() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy