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

io.fabric8.openshift.api.model.DoneableProjectStatus Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
package io.fabric8.openshift.api.model;

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

public class DoneableProjectStatus extends ProjectStatusFluentImpl implements Doneable{

    private final ProjectStatusBuilder builder;
    private final Function function;

    public DoneableProjectStatus(Function function){
            super();this.builder=new ProjectStatusBuilder(this);this.function=function;
    }
    public DoneableProjectStatus(ProjectStatus item,Function function){
            super(item);this.builder=new ProjectStatusBuilder(this, item);this.function=function;
    }
    public DoneableProjectStatus(ProjectStatus item){
            super(item);this.builder=new ProjectStatusBuilder(this, item);this.function=new Function() {
    public ProjectStatus apply(ProjectStatus item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy