![JAR search and dependency download from the Maven repository](/logo.png)
io.fabric8.kubernetes.api.model.extensions.DoneableIngressTLS Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import io.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.builder.Function;
public class DoneableIngressTLS extends IngressTLSFluentImpl implements Doneable{
private final IngressTLSBuilder builder;
private final Function function;
public DoneableIngressTLS(Function function){
super();this.builder=new IngressTLSBuilder(this);this.function=function;
}
public DoneableIngressTLS(IngressTLS item,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 - 2025 Weber Informatics LLC | Privacy Policy