io.fabric8.kubernetes.api.model.flowcontrol.v1.FlowSchemaSpecBuilder Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.flowcontrol.v1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class FlowSchemaSpecBuilder extends FlowSchemaSpecFluent implements VisitableBuilder{
public FlowSchemaSpecBuilder() {
this(new FlowSchemaSpec());
}
public FlowSchemaSpecBuilder(FlowSchemaSpecFluent> fluent) {
this(fluent, new FlowSchemaSpec());
}
public FlowSchemaSpecBuilder(FlowSchemaSpecFluent> fluent,FlowSchemaSpec instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public FlowSchemaSpecBuilder(FlowSchemaSpec instance) {
this.fluent = this;
this.copyInstance(instance);
}
FlowSchemaSpecFluent> fluent;
public FlowSchemaSpec build() {
FlowSchemaSpec buildable = new FlowSchemaSpec(fluent.buildDistinguisherMethod(),fluent.getMatchingPrecedence(),fluent.buildPriorityLevelConfiguration(),fluent.buildRules());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy