All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.pvanassen.geckoboard.api.json.map.HostPoint Maven / Gradle / Ivy

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