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

io.fabric8.kubernetes.api.model.flowcontrol.v1beta3.FlowSchemaBuilder Maven / Gradle / Ivy

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

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class FlowSchemaBuilder extends FlowSchemaFluent implements VisitableBuilder{
  public FlowSchemaBuilder() {
    this(new FlowSchema());
  }
  
  public FlowSchemaBuilder(FlowSchemaFluent fluent) {
    this(fluent, new FlowSchema());
  }
  
  public FlowSchemaBuilder(FlowSchemaFluent fluent,FlowSchema instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public FlowSchemaBuilder(FlowSchema instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  FlowSchemaFluent fluent;
  
  public FlowSchema build() {
    FlowSchema buildable = new FlowSchema(fluent.getApiVersion(),fluent.getKind(),fluent.buildMetadata(),fluent.buildSpec(),fluent.buildStatus());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy