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

io.alauda.devops.api.model.DoneableDeploymentConfigStatus Maven / Gradle / Ivy

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

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

public class DoneableDeploymentConfigStatus extends DeploymentConfigStatusFluentImpl implements Doneable{

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

    public DoneableDeploymentConfigStatus(io.alauda.kubernetes.api.builder.Function function){
            super();this.builder=new DeploymentConfigStatusBuilder(this);this.function=function;
    }
    public DoneableDeploymentConfigStatus(DeploymentConfigStatus item,io.alauda.kubernetes.api.builder.Function function){
            super(item);this.builder=new DeploymentConfigStatusBuilder(this, item);this.function=function;
    }
    public DoneableDeploymentConfigStatus(DeploymentConfigStatus item){
            super(item);this.builder=new DeploymentConfigStatusBuilder(this, item);this.function=new Function() {
    public DeploymentConfigStatus apply(DeploymentConfigStatus item) {
        return item;
    }
}
;
    }

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




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy