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

annotations.io.alauda.kubernetes.api.model.extensions.DoneableIngressTLS 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 DoneableIngressTLS extends IngressTLSFluentImpl implements Doneable{

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

    public DoneableIngressTLS(io.alauda.kubernetes.api.builder.Function function){
            super();this.builder=new IngressTLSBuilder(this);this.function=function;
    }
    public DoneableIngressTLS(IngressTLS item,io.alauda.kubernetes.api.builder.Function function){
            super(item);this.builder=new IngressTLSBuilder(this, item);this.function=function;
    }
    public DoneableIngressTLS(IngressTLS item){
            super(item);this.builder=new IngressTLSBuilder(this, item);this.function=new Function() {
    public IngressTLS apply(IngressTLS item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy