001package jmri.server.json.light;
002
003/**
004 * JSON Tokens used by the JMRI JSON Light service.
005 *
006 * @author Randall Wood (C) 2016
007 */
008public class JsonLight {
009
010    public static final String LIGHT = "light"; // NOI18N
011    public static final String LIGHTS = "lights"; // NOI18N
012
013    /**
014     * Prevent instantiation, since this class only contains static values
015     */
016    private JsonLight() {
017        throw new UnsupportedOperationException("There is no valid instance of this class");
018    }
019}