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

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

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

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

public class DoneableServiceAccountList extends ServiceAccountListFluentImpl implements Doneable{

    private final ServiceAccountListBuilder builder;
    private final Function function;

    public DoneableServiceAccountList(Function function){
            super();this.builder=new ServiceAccountListBuilder(this);this.function=function;
    }
    public DoneableServiceAccountList(ServiceAccountList item,Function function){
            super(item);this.builder=new ServiceAccountListBuilder(this, item);this.function=function;
    }
    public DoneableServiceAccountList(ServiceAccountList item){
            super(item);this.builder=new ServiceAccountListBuilder(this, item);this.function=new Function() {
    public ServiceAccountList apply(ServiceAccountList item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy