annotations.me.snowdrop.servicecatalog.api.model.DoneableServiceInstancePropertiesState 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 DoneableServiceInstancePropertiesState extends ServiceInstancePropertiesStateFluentImpl implements Doneable{
private final ServiceInstancePropertiesStateBuilder builder;
private final io.fabric8.kubernetes.api.builder.Function function;
public DoneableServiceInstancePropertiesState(io.fabric8.kubernetes.api.builder.Function function){
super();this.builder=new ServiceInstancePropertiesStateBuilder(this);this.function=function;
}
public DoneableServiceInstancePropertiesState(ServiceInstancePropertiesState item,io.fabric8.kubernetes.api.builder.Function function){
super(item);this.builder=new ServiceInstancePropertiesStateBuilder(this, item);this.function=function;
}
public DoneableServiceInstancePropertiesState(ServiceInstancePropertiesState item){
super(item);this.builder=new ServiceInstancePropertiesStateBuilder(this, item);this.function=new Function() {
public ServiceInstancePropertiesState apply(ServiceInstancePropertiesState item) {
return item;
}
}
;
}
public ServiceInstancePropertiesState done(){
return function.apply(builder.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy