io.kroxylicious.proxy.config.TargetClusterBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kroxylicious-integration-test-support Show documentation
Show all versions of kroxylicious-integration-test-support Show documentation
Support code to simplify writing integration tests for filters
package io.kroxylicious.proxy.config;
import io.kroxylicious.proxy.config.model.VisitableBuilder;
public class TargetClusterBuilder extends TargetClusterFluent implements VisitableBuilder{
public TargetClusterBuilder() {
this.fluent = this;
}
public TargetClusterBuilder(TargetClusterFluent> fluent) {
this.fluent = fluent;
}
public TargetClusterBuilder(TargetClusterFluent> fluent,TargetCluster instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public TargetClusterBuilder(TargetCluster instance) {
this.fluent = this;
this.copyInstance(instance);
}
TargetClusterFluent> fluent;
public TargetCluster build() {
TargetCluster buildable = new TargetCluster(fluent.getBootstrapServers(),fluent.buildTls());
return buildable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy