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

io.quarkus.kafka.client.runtime.devui.model.response.KafkaClusterInfo 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 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