io.quarkus.kafka.client.runtime.devui.model.response.KafkaClusterInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-kafka-client Show documentation
Show all versions of quarkus-kafka-client Show documentation
Connect to Apache Kafka with its native API
package io.quarkus.kafka.client.runtime.devui.model.response;
import java.util.ArrayList;
import java.util.List;
public class KafkaClusterInfo {
private String id;
private KafkaNode controller;
private List nodes = new ArrayList<>();
private String aclOperations;
public KafkaClusterInfo() {
}
public KafkaClusterInfo(String id, KafkaNode controller, List nodes, String aclOperations) {
this.id = id;
this.controller = controller;
this.nodes = nodes;
this.aclOperations = aclOperations;
}
public String getId() {
return id;
}
public KafkaNode getController() {
return controller;
}
public List getNodes() {
return nodes;
}
public String getAclOperations() {
return aclOperations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy