
io.fabric8.kubernetes.api.model.extensions.DoneableIngressList Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import io.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.builder.Function;
public class DoneableIngressList extends IngressListFluentImpl implements Doneable{
private final IngressListBuilder builder;
private final Function function;
public DoneableIngressList(Function function){
super();this.builder=new IngressListBuilder(this);this.function=function;
}
public DoneableIngressList(IngressList item,Function function){
super(item);this.builder=new IngressListBuilder(this, item);this.function=function;
}
public DoneableIngressList(IngressList item){
super(item);this.builder=new IngressListBuilder(this, item);this.function=new Function() {
public IngressList apply(IngressList item) {
return item;
}
}
;
}
public IngressList done(){
return function.apply(builder.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy