![JAR search and dependency download from the Maven repository](/logo.png)
io.fabric8.kubernetes.api.model.extensions.IngressListBuilder Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class IngressListBuilder extends IngressListFluent implements VisitableBuilder{
public IngressListBuilder() {
this(new IngressList());
}
public IngressListBuilder(IngressListFluent> fluent) {
this(fluent, new IngressList());
}
public IngressListBuilder(IngressListFluent> fluent,IngressList instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public IngressListBuilder(IngressList instance) {
this.fluent = this;
this.copyInstance(instance);
}
IngressListFluent> fluent;
public IngressList build() {
IngressList buildable = new IngressList(fluent.getApiVersion(),fluent.buildItems(),fluent.getKind(),fluent.getMetadata());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy