io.fabric8.openshift.api.model.machine.v1.ControlPlaneMachineSetStrategyBuilder Maven / Gradle / Ivy
package io.fabric8.openshift.api.model.machine.v1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class ControlPlaneMachineSetStrategyBuilder extends ControlPlaneMachineSetStrategyFluent implements VisitableBuilder{
public ControlPlaneMachineSetStrategyBuilder() {
this(new ControlPlaneMachineSetStrategy());
}
public ControlPlaneMachineSetStrategyBuilder(ControlPlaneMachineSetStrategyFluent> fluent) {
this(fluent, new ControlPlaneMachineSetStrategy());
}
public ControlPlaneMachineSetStrategyBuilder(ControlPlaneMachineSetStrategyFluent> fluent,ControlPlaneMachineSetStrategy instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public ControlPlaneMachineSetStrategyBuilder(ControlPlaneMachineSetStrategy instance) {
this.fluent = this;
this.copyInstance(instance);
}
ControlPlaneMachineSetStrategyFluent> fluent;
public ControlPlaneMachineSetStrategy build() {
ControlPlaneMachineSetStrategy buildable = new ControlPlaneMachineSetStrategy(fluent.getType());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy