io.quarkus.kafka.client.runtime.devui.model.response.KafkaAclInfo 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 KafkaAclInfo {
private String clusterId;
private String broker;
private String aclOperations;
private List entries = new ArrayList<>();
public KafkaAclInfo() {
}
public KafkaAclInfo(String clusterId, String broker, String aclOperations, List entries) {
this.clusterId = clusterId;
this.broker = broker;
this.aclOperations = aclOperations;
this.entries = entries;
}
public String getClusterId() {
return clusterId;
}
public String getBroker() {
return broker;
}
public String getAclOperations() {
return aclOperations;
}
public List getEntries() {
return entries;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy