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

me.snowdrop.istio.api.policy.v1beta1.DoneableRuleList Maven / Gradle / Ivy

package me.snowdrop.istio.api.policy.v1beta1;

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

public class DoneableRuleList extends RuleListFluentImpl implements Doneable{

    private final RuleListBuilder builder;
    private final Function function;

    public DoneableRuleList(Function function){
            super();this.builder=new RuleListBuilder(this);this.function=function;
    }
    public DoneableRuleList(RuleList item,Function function){
            super(item);this.builder=new RuleListBuilder(this, item);this.function=function;
    }
    public DoneableRuleList(RuleList item){
            super(item);this.builder=new RuleListBuilder(this, item);this.function=new Function() {
    public RuleList apply(RuleList item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy