com.taobao.drc.clusterclient.clustermanager.ExpectedPartitionStatus 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
package com.taobao.drc.clusterclient.clustermanager;
/**
* @author yangyang
* @since 17/6/20
*/
public class ExpectedPartitionStatus {
private String partition;
private Long generation;
private String offset;
private Integer errCode;
private String errMsg;
public String getPartition() {
return partition;
}
public void setPartition(String partition) {
this.partition = partition;
}
public Long getGeneration() {
return generation;
}
public void setGeneration(Long generation) {
this.generation = generation;
}
public String getOffset() {
return offset;
}
public void setOffset(String offset) {
this.offset = offset;
}
public Integer getErrCode() {
return errCode;
}
public void setErrCode(Integer errCode) {
this.errCode = errCode;
}
public String getErrMsg() {
return errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
}