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

com.huaweicloud.dis.iface.consumergroup.request.SubscribeConsumerGroupRequest Maven / Gradle / Ivy

There is a newer version: 1.3.18
Show newest version
package com.huaweicloud.dis.iface.consumergroup.request;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

// GW -> CG_Global
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SubscribeConsumerGroupRequest extends ConsumerGroupRequest
{
    @JsonProperty("topic_name")
    protected String topicName;

    public String getTopicName()
    {
        return topicName;
    }

    public void setTopicName(String topicName)
    {
        this.topicName = topicName;
    }

    @Override
    public String toString()
    {
        return "SubscribeConsumerGroupRequest{" +
                "projectId='" + projectId + '\'' +
                ", streamName='" + streamName + '\'' +
                ", groupId='" + groupId + '\'' +
                ", topicName='" + topicName + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy