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

io.fabric8.kubernetes.api.model.DoneableClientIPConfig Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
package io.fabric8.kubernetes.api.model;

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

public class DoneableClientIPConfig extends ClientIPConfigFluentImpl implements Doneable{

    private final ClientIPConfigBuilder builder;
    private final io.fabric8.kubernetes.api.builder.Function function;

    public DoneableClientIPConfig(io.fabric8.kubernetes.api.builder.Function function){
            super();this.builder=new ClientIPConfigBuilder(this);this.function=function;
    }
    public DoneableClientIPConfig(ClientIPConfig item,io.fabric8.kubernetes.api.builder.Function function){
            super(item);this.builder=new ClientIPConfigBuilder(this, item);this.function=function;
    }
    public DoneableClientIPConfig(ClientIPConfig item){
            super(item);this.builder=new ClientIPConfigBuilder(this, item);this.function=new Function() {
    public ClientIPConfig apply(ClientIPConfig item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy