io.fabric8.kubernetes.api.model.extensions.DeploymentListBuilder Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class DeploymentListBuilder extends DeploymentListFluent implements VisitableBuilder{
public DeploymentListBuilder() {
this(new DeploymentList());
}
public DeploymentListBuilder(DeploymentListFluent> fluent) {
this(fluent, new DeploymentList());
}
public DeploymentListBuilder(DeploymentListFluent> fluent,DeploymentList instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public DeploymentListBuilder(DeploymentList instance) {
this.fluent = this;
this.copyInstance(instance);
}
DeploymentListFluent> fluent;
public DeploymentList build() {
DeploymentList buildable = new DeploymentList(fluent.getApiVersion(),fluent.buildItems(),fluent.getKind(),fluent.getMetadata());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
}