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

io.fabric8.openshift.api.model.miscellaneous.apiserver.v1.PerNodeAPIRequestLogBuilder Maven / Gradle / Ivy

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

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class PerNodeAPIRequestLogBuilder extends PerNodeAPIRequestLogFluent implements VisitableBuilder{
  public PerNodeAPIRequestLogBuilder() {
    this(new PerNodeAPIRequestLog());
  }
  
  public PerNodeAPIRequestLogBuilder(PerNodeAPIRequestLogFluent fluent) {
    this(fluent, new PerNodeAPIRequestLog());
  }
  
  public PerNodeAPIRequestLogBuilder(PerNodeAPIRequestLogFluent fluent,PerNodeAPIRequestLog instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public PerNodeAPIRequestLogBuilder(PerNodeAPIRequestLog instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  PerNodeAPIRequestLogFluent fluent;
  
  public PerNodeAPIRequestLog build() {
    PerNodeAPIRequestLog buildable = new PerNodeAPIRequestLog(fluent.buildByUser(),fluent.getNodeName(),fluent.getRequestCount());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy