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

io.fabric8.kubernetes.api.model.DoneableEndpoints 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 DoneableEndpoints extends EndpointsFluentImpl implements Doneable{

    private final EndpointsBuilder builder;
    private final Function function;

    public DoneableEndpoints(Function function){
            super();this.builder=new EndpointsBuilder(this);this.function=function;
    }
    public DoneableEndpoints(Endpoints item,Function function){
            super(item);this.builder=new EndpointsBuilder(this, item);this.function=function;
    }
    public DoneableEndpoints(Endpoints item){
            super(item);this.builder=new EndpointsBuilder(this, item);this.function=new Function() {
    public Endpoints apply(Endpoints item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy