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

io.fabric8.openshift.api.model.miscellaneous.metal3.v1alpha1.NICBuilder Maven / Gradle / Ivy

There is a newer version: 6.13.4
Show newest version
package io.fabric8.openshift.api.model.miscellaneous.metal3.v1alpha1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class NICBuilder extends NICFluent implements VisitableBuilder{
  public NICBuilder() {
    this(new NIC());
  }
  
  public NICBuilder(NICFluent fluent) {
    this(fluent, new NIC());
  }
  
  public NICBuilder(NICFluent fluent,NIC instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public NICBuilder(NIC instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  NICFluent fluent;
  
  public NIC build() {
    NIC buildable = new NIC(fluent.getIp(),fluent.getMac(),fluent.getModel(),fluent.getName(),fluent.getPxe(),fluent.getSpeedGbps(),fluent.getVlanId(),fluent.buildVlans());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy