io.fabric8.openshift.api.model.DoneableRecreateDeploymentStrategyParams Maven / Gradle / Ivy
package io.fabric8.openshift.api.model;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.Function;
import io.fabric8.kubernetes.api.builder.BaseFluent;
public class DoneableRecreateDeploymentStrategyParams extends RecreateDeploymentStrategyParamsFluentImpl implements Doneable, RecreateDeploymentStrategyParamsFluent{
private final RecreateDeploymentStrategyParamsBuilder builder; private final Function function;
public DoneableRecreateDeploymentStrategyParams ( Function function){
this.builder=new RecreateDeploymentStrategyParamsBuilder(this);this.function=function;
}
public DoneableRecreateDeploymentStrategyParams ( RecreateDeploymentStrategyParams item, Function function){
this.builder=new RecreateDeploymentStrategyParamsBuilder(this, item);this.function=function;
}
public DoneableRecreateDeploymentStrategyParams ( RecreateDeploymentStrategyParams item){
this.builder=new RecreateDeploymentStrategyParamsBuilder(this, item);this.function=new Function() {
public RecreateDeploymentStrategyParams apply(RecreateDeploymentStrategyParams item) {
return item;
}
}
;
}
public RecreateDeploymentStrategyParams done(){
return function.apply(builder.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy