
nl.pvanassen.geckoboard.api.json.map.HostPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geckoboard-api Show documentation
Show all versions of geckoboard-api Show documentation
A Java API to generate highchart json on the server side.
The newest version!
package nl.pvanassen.geckoboard.api.json.map;
/**
* A point on a map based on a machines host name
*
* @author Paul van Assen
*
*/
public class HostPoint extends AbstractPoint {
@SuppressWarnings("unused")
private final String host;
/**
* Constructor with name
*
* @param hostname Hostname of the machine
*/
public HostPoint(String hostname) {
super();
host = hostname;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy