
com.taobao.drc.clusterclient.clustermanager.AbstractControllerResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of consumer-core Show documentation
Show all versions of consumer-core Show documentation
The java consumer core component for Data Transmission Service
The newest version!
package com.taobao.drc.clusterclient.clustermanager;
import com.alibaba.fastjson.annotation.JSONField;
/**
* @author yangyang
* @since 17/6/20
*/
public class AbstractControllerResponse {
@JSONField(name = "isSuccess")
private boolean success;
private String errMsg;
public boolean isSuccess() {
return success;
}
public void setSuccess(boolean success) {
this.success = success;
}
public String getErrMsg() {
return errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy