All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.openshift.api.model.DoneableImageList 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.Function;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;

public class DoneableImageList extends ImageListFluentImpl implements Doneable, ImageListFluent{


    private final ImageListBuilder builder;    private final Function function;
    public DoneableImageList ( Function function){
    this.builder=new ImageListBuilder(this);this.function=function;
}
    public DoneableImageList ( ImageList item,  Function function){
    this.builder=new ImageListBuilder(this, item);this.function=function;
}
    public DoneableImageList ( ImageList item){
    this.builder=new ImageListBuilder(this, item);this.function=new Function() {
    public ImageList apply(ImageList item) {
        return item;
    }
}
;
}

    public ImageList done(){
     return function.apply(builder.build());
}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy