All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.kafka.client.runtime.devui.model.response.KafkaAclInfo Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
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