io.fabric8.knative.internal.caching.v1alpha1.ImageListBuilder Maven / Gradle / Ivy
package io.fabric8.knative.internal.caching.v1alpha1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class ImageListBuilder extends ImageListFluent implements VisitableBuilder{
public ImageListBuilder() {
this(new ImageList());
}
public ImageListBuilder(ImageListFluent> fluent) {
this(fluent, new ImageList());
}
public ImageListBuilder(ImageListFluent> fluent,ImageList instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public ImageListBuilder(ImageList instance) {
this.fluent = this;
this.copyInstance(instance);
}
ImageListFluent> fluent;
public ImageList build() {
ImageList buildable = new ImageList(fluent.getApiVersion(),fluent.buildItems(),fluent.getKind(),fluent.getMetadata());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy