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