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

io.quarkus.kafka.client.runtime.devui.model.request.KafkaCreateTopicRequest Maven / Gradle / Ivy

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