com.alibaba.rocketmq.common.protocol.header.GetTopicStatsInfoRequestHeader Maven / Gradle / Ivy
package com.alibaba.rocketmq.common.protocol.header;
import com.alibaba.rocketmq.remoting.CommandCustomHeader;
import com.alibaba.rocketmq.remoting.annotation.CFNotNull;
import com.alibaba.rocketmq.remoting.exception.RemotingCommandException;
/**
* @author shijia.wxr
* @since 13-8-4
*/
public class GetTopicStatsInfoRequestHeader implements CommandCustomHeader {
@CFNotNull
private String topic;
@Override
public void checkFields() throws RemotingCommandException {
}
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
}