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

io.fabric8.kubernetes.api.model.extensions.IPBlockBuilder Maven / Gradle / Ivy

There is a newer version: 6.13.4
Show newest version
package io.fabric8.kubernetes.api.model.extensions;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class IPBlockBuilder extends IPBlockFluent implements VisitableBuilder{
  public IPBlockBuilder() {
    this(new IPBlock());
  }
  
  public IPBlockBuilder(IPBlockFluent fluent) {
    this(fluent, new IPBlock());
  }
  
  public IPBlockBuilder(IPBlockFluent fluent,IPBlock instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public IPBlockBuilder(IPBlock instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  IPBlockFluent fluent;
  
  public IPBlock build() {
    IPBlock buildable = new IPBlock(fluent.getCidr(),fluent.getExcept());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy