io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.flowcontrol.v1beta1;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import java.lang.Integer;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class LimitResponseFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluent {
private io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfigurationBuilder queuing;
private java.lang.String type;
public LimitResponseFluentImpl() {
}
public LimitResponseFluentImpl(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponse instance) {
this.withQueuing(instance.getQueuing());
this.withType(instance.getType());
}
@java.lang.Deprecated
/**
* This method has been deprecated, please use method buildQueuing instead.
* @return The buildable object.
*/
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfiguration getQueuing() {
return this.queuing!=null?this.queuing.build():null;
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfiguration buildQueuing() {
return this.queuing!=null?this.queuing.build():null;
}
public A withQueuing(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfiguration queuing) {
_visitables.get("queuing").remove(this.queuing);
if (queuing!=null){ this.queuing= new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfigurationBuilder(queuing); _visitables.get("queuing").add(this.queuing);} return (A) this;
}
public java.lang.Boolean hasQueuing() {
return this.queuing != null;
}
public A withNewQueuing(java.lang.Integer handSize,java.lang.Integer queueLengthLimit,java.lang.Integer queues) {
return (A)withQueuing(new QueuingConfiguration(handSize, queueLengthLimit, queues));
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluent.QueuingNested withNewQueuing() {
return new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluentImpl.QueuingNestedImpl();
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluent.QueuingNested withNewQueuingLike(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfiguration item) {
return new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluentImpl.QueuingNestedImpl(item);
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluent.QueuingNested editQueuing() {
return withNewQueuingLike(getQueuing());
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluent.QueuingNested editOrNewQueuing() {
return withNewQueuingLike(getQueuing() != null ? getQueuing(): new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfigurationBuilder().build());
}
public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluent.QueuingNested editOrNewQueuingLike(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfiguration item) {
return withNewQueuingLike(getQueuing() != null ? getQueuing(): item);
}
public java.lang.String getType() {
return this.type;
}
public A withType(java.lang.String type) {
this.type=type; return (A) this;
}
public java.lang.Boolean hasType() {
return this.type != null;
}
@java.lang.Deprecated
/**
* Method is deprecated. use withType instead.
*/
public A withNewType(java.lang.String arg0) {
return (A)withType(new String(arg0));
}
public boolean equals(java.lang.Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
LimitResponseFluentImpl that = (LimitResponseFluentImpl) o;
if (queuing != null ? !queuing.equals(that.queuing) :that.queuing != null) return false;
if (type != null ? !type.equals(that.type) :that.type != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(queuing, type, super.hashCode());
}
public class QueuingNestedImpl extends io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfigurationFluentImpl> implements io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.LimitResponseFluent.QueuingNested,io.fabric8.kubernetes.api.builder.Nested {
private final io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfigurationBuilder builder;
QueuingNestedImpl(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfiguration item) {
this.builder = new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfigurationBuilder(this, item);
}
QueuingNestedImpl() {
this.builder = new io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.QueuingConfigurationBuilder(this);
}
public N and() {
return (N) LimitResponseFluentImpl.this.withQueuing(builder.build());
}
public N endQueuing() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy