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

io.fabric8.kubernetes.api.model.flowcontrol.v1.FlowSchemaStatusBuilder Maven / Gradle / Ivy

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

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class FlowSchemaStatusBuilder extends FlowSchemaStatusFluent implements VisitableBuilder{
  public FlowSchemaStatusBuilder() {
    this(new FlowSchemaStatus());
  }
  
  public FlowSchemaStatusBuilder(FlowSchemaStatusFluent fluent) {
    this(fluent, new FlowSchemaStatus());
  }
  
  public FlowSchemaStatusBuilder(FlowSchemaStatusFluent fluent,FlowSchemaStatus instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public FlowSchemaStatusBuilder(FlowSchemaStatus instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  FlowSchemaStatusFluent fluent;
  
  public FlowSchemaStatus build() {
    FlowSchemaStatus buildable = new FlowSchemaStatus(fluent.buildConditions());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy