![JAR search and dependency download from the Maven repository](/logo.png)
io.fabric8.kubernetes.api.model.extensions.HTTPIngressPathBuilder Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
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.buildBackend(),fluent.getPath(),fluent.getPathType());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy