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

io.fabric8.kubernetes.api.model.apps.DeploymentListBuilder Maven / Gradle / Ivy

The newest version!
package io.fabric8.kubernetes.api.model.apps;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class DeploymentListBuilder extends DeploymentListFluent implements VisitableBuilder{
  public DeploymentListBuilder() {
    this(new DeploymentList());
  }
  
  public DeploymentListBuilder(DeploymentListFluent fluent) {
    this(fluent, new DeploymentList());
  }
  
  public DeploymentListBuilder(DeploymentListFluent fluent,DeploymentList instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public DeploymentListBuilder(DeploymentList instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  DeploymentListFluent fluent;
  
  public DeploymentList build() {
    DeploymentList buildable = new DeploymentList(fluent.getApiVersion(),fluent.buildItems(),fluent.getKind(),fluent.getMetadata());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy