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

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

There is a newer version: 3.18.0.CR1
Show newest version
package io.quarkus.kafka.client.runtime.devui.model.response;

public class KafkaNode {
    private String host;
    private int port;
    private String id;

    public KafkaNode() {
    }

    public KafkaNode(String host, int port, String id) {
        this.host = host;
        this.port = port;
        this.id = id;
    }

    public String getHost() {
        return host;
    }

    public int getPort() {
        return port;
    }

    public String getId() {
        return id;
    }

    public String asFullNodeName() {
        return host + ":" + port;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy