
com.alicloud.openservices.tablestore.model.timeseries.UpdateTimeseriesMetaResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tablestore Show documentation
Show all versions of tablestore Show documentation
Aliyun Open Services SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有
(C)阿里云计算有限公司 http://www.aliyun.com
package com.alicloud.openservices.tablestore.model.timeseries;
import com.alicloud.openservices.tablestore.model.Error;
import com.alicloud.openservices.tablestore.model.Response;
import java.util.ArrayList;
import java.util.List;
public class UpdateTimeseriesMetaResponse extends Response {
public static class FailedRowResult {
private int index;
private Error error;
public FailedRowResult(int index, Error error) {
this.index = index;
this.error = error;
}
public int getIndex() {
return index;
}
public Error getError() {
return error;
}
}
private List failedRows;
public UpdateTimeseriesMetaResponse(Response meta) {
super(meta);
}
public boolean isAllSuccess() {
return failedRows == null || failedRows.isEmpty();
}
public List getFailedRows() {
if (failedRows == null) {
return new ArrayList();
}
return failedRows;
}
public void setFailedRows(List failedRows) {
this.failedRows = failedRows;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy