io.fabric8.openshift.api.model.miscellaneous.apiserver.v1.PerVerbAPIRequestCountBuilder Maven / Gradle / Ivy
package io.fabric8.openshift.api.model.miscellaneous.apiserver.v1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class PerVerbAPIRequestCountBuilder extends PerVerbAPIRequestCountFluent implements VisitableBuilder{
public PerVerbAPIRequestCountBuilder() {
this(new PerVerbAPIRequestCount());
}
public PerVerbAPIRequestCountBuilder(PerVerbAPIRequestCountFluent> fluent) {
this(fluent, new PerVerbAPIRequestCount());
}
public PerVerbAPIRequestCountBuilder(PerVerbAPIRequestCountFluent> fluent,PerVerbAPIRequestCount instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public PerVerbAPIRequestCountBuilder(PerVerbAPIRequestCount instance) {
this.fluent = this;
this.copyInstance(instance);
}
PerVerbAPIRequestCountFluent> fluent;
public PerVerbAPIRequestCount build() {
PerVerbAPIRequestCount buildable = new PerVerbAPIRequestCount(fluent.getRequestCount(),fluent.getVerb());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
}