001package jmri.server.json.reporter; 002 003/** 004 * Constants used by the {@link jmri.server.json.reporter} package. 005 * 006 * @author Randall Wood 2016 007 */ 008public class JsonReporter { 009 010 /** 011 * {@value #REPORTER} 012 */ 013 public static final String REPORTER = "reporter"; // NOI18N 014 /** 015 * {@value #REPORTERS} 016 */ 017 public static final String REPORTERS = "reporters"; // NOI18N 018 /** 019 * {@value #REPORT} 020 */ 021 public static final String REPORT = "report"; // NOI18N 022 /** 023 * {@value #LAST_REPORT} 024 */ 025 public static final String LAST_REPORT = "lastReport"; // NOI18N 026 027 /** 028 * Prevent instantiation, since this class only contains static values 029 */ 030 private JsonReporter() { 031 throw new UnsupportedOperationException("There is no valid instance of this class"); 032 } 033}