org.influxdb.dto.Pong Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of influxdb-java Show documentation
Show all versions of influxdb-java Show documentation
Java API to access the InfluxDB REST API
The newest version!
package org.influxdb.dto;
/**
* Representation of the response for a influxdb ping.
*
* @author stefan.majer [at] gmail.com
*
*/
public class Pong {
private String version;
private long responseTime;
private static final String UNKNOWN_VERSION = "unknown";
/**
* @return the status
*/
public String getVersion() {
return this.version;
}
/**
* @param version
* the status to set
*/
public void setVersion(final String version) {
this.version = version;
}
/**
* Good or bad connection status.
*
* @return true if the version of influxdb is not unknown.
*/
public boolean isGood() {
return !UNKNOWN_VERSION.equalsIgnoreCase(version);
}
/**
* @return the responseTime
*/
public long getResponseTime() {
return this.responseTime;
}
/**
* @param responseTime
* the responseTime to set
*/
public void setResponseTime(final long responseTime) {
this.responseTime = responseTime;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "Pong{version=" + version + ", responseTime=" + responseTime + "}";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy