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

io.fabric8.kubernetes.api.model.DoneablePodTemplateList Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package io.fabric8.kubernetes.api.model;

import io.fabric8.kubernetes.api.builder.Function;

public class DoneablePodTemplateList extends PodTemplateListFluentImpl implements Doneable{

    private final PodTemplateListBuilder builder;
    private final Function function;

    public DoneablePodTemplateList(Function function){
            super();this.builder=new PodTemplateListBuilder(this);this.function=function;
    }
    public DoneablePodTemplateList(PodTemplateList item,Function function){
            super(item);this.builder=new PodTemplateListBuilder(this, item);this.function=function;
    }
    public DoneablePodTemplateList(PodTemplateList item){
            super(item);this.builder=new PodTemplateListBuilder(this, item);this.function=new Function() {
    public PodTemplateList apply(PodTemplateList item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy