![JAR search and dependency download from the Maven repository](/logo.png)
com.alibaba.rocketmq.common.protocol.header.namesrv.GetKVConfigResponseHeader Maven / Gradle / Ivy
package com.alibaba.rocketmq.common.protocol.header.namesrv;
import com.alibaba.rocketmq.remoting.CommandCustomHeader;
import com.alibaba.rocketmq.remoting.annotation.CFNullable;
import com.alibaba.rocketmq.remoting.exception.RemotingCommandException;
/**
* @author shijia.wxr
* @since 2013-7-1
*/
public class GetKVConfigResponseHeader implements CommandCustomHeader {
@CFNullable
private String value;
@Override
public void checkFields() throws RemotingCommandException {
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy