All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.kubernetes.api.model.flowcontrol.v1beta2.FlowSchemaSpecBuilder Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
package io.fabric8.kubernetes.api.model.flowcontrol.v1beta2;

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