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