io.quarkus.kafka.client.runtime.devui.model.request.KafkaCreateTopicRequest 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.request;
public class KafkaCreateTopicRequest {
private String topicName;
private Integer partitions;
private Short replications;
public KafkaCreateTopicRequest() {
}
public KafkaCreateTopicRequest(String topicName, Integer partitions, Short replications) {
this.topicName = topicName;
this.partitions = partitions;
this.replications = replications;
}
public String getTopicName() {
return topicName;
}
public Integer getPartitions() {
return partitions;
}
public Short getReplications() {
return replications;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy