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

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

public class KafkaConsumerGroupMember {
    private String memberId;
    private String clientId;
    private String host;

    private Collection partitions;

    public KafkaConsumerGroupMember() {
    }

    public KafkaConsumerGroupMember(String memberId, String clientId, String host,
            Collection partitions) {
        this.memberId = memberId;
        this.clientId = clientId;
        this.host = host;
        this.partitions = partitions;
    }

    public String getMemberId() {
        return memberId;
    }

    public String getClientId() {
        return clientId;
    }

    public String getHost() {
        return host;
    }

    public Collection getPartitions() {
        return partitions;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy