annotations.me.snowdrop.servicecatalog.api.model.DoneableServiceBindingPropertiesState Maven / Gradle / Ivy
The newest version!
package me.snowdrop.servicecatalog.api.model;
import io.fabric8.kubernetes.api.builder.Function;
import io.fabric8.kubernetes.api.model.Doneable;
public class DoneableServiceBindingPropertiesState extends ServiceBindingPropertiesStateFluentImpl implements Doneable{
private final ServiceBindingPropertiesStateBuilder builder;
private final io.fabric8.kubernetes.api.builder.Function function;
public DoneableServiceBindingPropertiesState(io.fabric8.kubernetes.api.builder.Function function){
super();this.builder=new ServiceBindingPropertiesStateBuilder(this);this.function=function;
}
public DoneableServiceBindingPropertiesState(ServiceBindingPropertiesState item,io.fabric8.kubernetes.api.builder.Function function){
super(item);this.builder=new ServiceBindingPropertiesStateBuilder(this, item);this.function=function;
}
public DoneableServiceBindingPropertiesState(ServiceBindingPropertiesState item){
super(item);this.builder=new ServiceBindingPropertiesStateBuilder(this, item);this.function=new Function() {
public ServiceBindingPropertiesState apply(ServiceBindingPropertiesState item) {
return item;
}
}
;
}
public ServiceBindingPropertiesState done(){
return function.apply(builder.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy