io.fabric8.knative.internal.networking.v1alpha1.HTTPIngressPathBuilder Maven / Gradle / Ivy
The newest version!
package io.fabric8.knative.internal.networking.v1alpha1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class HTTPIngressPathBuilder extends HTTPIngressPathFluent implements VisitableBuilder{
public HTTPIngressPathBuilder() {
this(new HTTPIngressPath());
}
public HTTPIngressPathBuilder(HTTPIngressPathFluent> fluent) {
this(fluent, new HTTPIngressPath());
}
public HTTPIngressPathBuilder(HTTPIngressPathFluent> fluent,HTTPIngressPath instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public HTTPIngressPathBuilder(HTTPIngressPath instance) {
this.fluent = this;
this.copyInstance(instance);
}
HTTPIngressPathFluent> fluent;
public HTTPIngressPath build() {
HTTPIngressPath buildable = new HTTPIngressPath(fluent.getAppendHeaders(),fluent.getHeaders(),fluent.getPath(),fluent.getRewriteHost(),fluent.buildSplits());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy