com.axibase.tsd.model.data.command.SendCommandResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atsd-api-java Show documentation
Show all versions of atsd-api-java Show documentation
The ATSD Client for Java enables Java developers to easily read
and write statistics and metadata from Axibase Time-Series Database. Build reporting,
analytics, and alerting solutions with minimal effort.
package com.axibase.tsd.model.data.command;
/**
* @author Igor Shmagrinskiy
*/
public class SendCommandResult {
private Integer fail;
private Integer success;
private Integer total;
public Integer getFail() {
return fail;
}
public void setFail(Integer fail) {
this.fail = fail;
}
public Integer getSuccess() {
return success;
}
public void setSuccess(Integer success) {
this.success = success;
}
public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
@Override
public String toString() {
return String.format("{\"fail\":%s,\"success\":%s,\"total\":%s}",
fail, success, total
);
}
}