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