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

io.alauda.kubernetes.api.model.extensions.DoneableIngressBackend Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version
package io.alauda.kubernetes.api.model.extensions;

import io.alauda.kubernetes.api.builder.Function;
import io.alauda.kubernetes.api.model.Doneable;

public class DoneableIngressBackend extends IngressBackendFluentImpl implements Doneable{

    private final IngressBackendBuilder builder;
    private final io.alauda.kubernetes.api.builder.Function function;

    public DoneableIngressBackend(io.alauda.kubernetes.api.builder.Function function){
            super();this.builder=new IngressBackendBuilder(this);this.function=function;
    }
    public DoneableIngressBackend(IngressBackend item,io.alauda.kubernetes.api.builder.Function function){
            super(item);this.builder=new IngressBackendBuilder(this, item);this.function=function;
    }
    public DoneableIngressBackend(IngressBackend item){
            super(item);this.builder=new IngressBackendBuilder(this, item);this.function=new Function() {
    public IngressBackend apply(IngressBackend item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy