
nl.pvanassen.geckoboard.api.json.map.IpPoint 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 the map based on an IP address. This IP address is resolved to a location by geckoboard based on geo-ip
* data
*
* @author Paul van Assen
*/
public class IpPoint extends AbstractPoint {
@SuppressWarnings("unused")
private final String ip;
/**
* Constructor for point
*
* @param ip Ip address
*/
public IpPoint(String ip) {
super();
this.ip = ip;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy