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

io.alauda.kubernetes.api.model.DoneableOwnerInRepository Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version
package io.alauda.kubernetes.api.model;

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

public class DoneableOwnerInRepository extends OwnerInRepositoryFluentImpl implements Doneable{

    private final OwnerInRepositoryBuilder builder;
    private final io.alauda.kubernetes.api.builder.Function function;

    public DoneableOwnerInRepository(io.alauda.kubernetes.api.builder.Function function){
            super();this.builder=new OwnerInRepositoryBuilder(this);this.function=function;
    }
    public DoneableOwnerInRepository(OwnerInRepository item,io.alauda.kubernetes.api.builder.Function function){
            super(item);this.builder=new OwnerInRepositoryBuilder(this, item);this.function=function;
    }
    public DoneableOwnerInRepository(OwnerInRepository item){
            super(item);this.builder=new OwnerInRepositoryBuilder(this, item);this.function=new Function() {
    public OwnerInRepository apply(OwnerInRepository item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy