io.quarkus.kafka.client.runtime.devui.model.response.KafkaInfo 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.List;
public class KafkaInfo {
private String broker;
private KafkaClusterInfo clusterInfo;
private List topics;
private List consumerGroups;
public KafkaInfo() {
}
public KafkaInfo(String broker, KafkaClusterInfo clusterInfo, List topics,
List consumerGroups) {
this.broker = broker;
this.clusterInfo = clusterInfo;
this.topics = topics;
this.consumerGroups = consumerGroups;
}
public String getBroker() {
return broker;
}
public List getTopics() {
return topics;
}
public KafkaClusterInfo getClusterInfo() {
return clusterInfo;
}
public List getConsumerGroups() {
return consumerGroups;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy