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

io.fabric8.knative.flows.v1.ParallelBuilder Maven / Gradle / Ivy

package io.fabric8.knative.flows.v1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Boolean;
public class ParallelBuilder extends ParallelFluentImpl implements VisitableBuilder{
  public ParallelBuilder() {
    this(false);
  }
  public ParallelBuilder(Boolean validationEnabled) {
    this(new Parallel(), validationEnabled);
  }
  public ParallelBuilder(ParallelFluent fluent) {
    this(fluent, false);
  }
  public ParallelBuilder(ParallelFluent fluent,Boolean validationEnabled) {
    this(fluent, new Parallel(), validationEnabled);
  }
  public ParallelBuilder(ParallelFluent fluent,Parallel instance) {
    this(fluent, instance, false);
  }
  public ParallelBuilder(ParallelFluent fluent,Parallel instance,Boolean validationEnabled) {
    this.fluent = fluent; 
    fluent.withApiVersion(instance.getApiVersion()); 
    fluent.withKind(instance.getKind()); 
    fluent.withMetadata(instance.getMetadata()); 
    fluent.withSpec(instance.getSpec()); 
    fluent.withStatus(instance.getStatus()); 
    this.validationEnabled = validationEnabled; 
  }
  public ParallelBuilder(Parallel instance) {
    this(instance,false);
  }
  public ParallelBuilder(Parallel instance,Boolean validationEnabled) {
    this.fluent = this; 
    this.withApiVersion(instance.getApiVersion()); 
    this.withKind(instance.getKind()); 
    this.withMetadata(instance.getMetadata()); 
    this.withSpec(instance.getSpec()); 
    this.withStatus(instance.getStatus()); 
    this.validationEnabled = validationEnabled; 
  }
  ParallelFluent fluent;
  Boolean validationEnabled;
  public Parallel build() {
    Parallel buildable = new Parallel(fluent.getApiVersion(),fluent.getKind(),fluent.getMetadata(),fluent.getSpec(),fluent.getStatus());
    return buildable;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy