me.snowdrop.istio.api.model.v1.mixer.template.DoneableCheckNothing Maven / Gradle / Ivy
package me.snowdrop.istio.api.model.v1.mixer.template;
import io.fabric8.kubernetes.api.builder.Function;
import io.fabric8.kubernetes.api.model.Doneable;
public class DoneableCheckNothing extends CheckNothingFluentImpl implements Doneable{
private final CheckNothingBuilder builder;
private final io.fabric8.kubernetes.api.builder.Function function;
public DoneableCheckNothing(io.fabric8.kubernetes.api.builder.Function function){
super();this.builder=new CheckNothingBuilder(this);this.function=function;
}
public DoneableCheckNothing(CheckNothing item,io.fabric8.kubernetes.api.builder.Function function){
super(item);this.builder=new CheckNothingBuilder(this, item);this.function=function;
}
public DoneableCheckNothing(CheckNothing item){
super(item);this.builder=new CheckNothingBuilder(this, item);this.function=new Function() {
public CheckNothing apply(CheckNothing item) {
return item;
}
}
;
}
public CheckNothing done(){
return function.apply(builder.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy