001package jmri.server.json.consist;
002
003/**
004 * Constants used by the internal JMRI JSON Consist service.
005 *
006 * @author Randall Wood (C) 2016
007 */
008public class JsonConsist {
009
010    /**
011     * {@value #CONSIST}
012     */
013    public static final String CONSIST = "consist"; // NOI18N
014    /**
015     * {@value #CONSISTS}
016     */
017    public static final String CONSISTS = "consists"; // NOI18N
018    /**
019     * {@value #ERROR_NO_CONSIST_MANAGER}, a key for localized error messages
020     * indicating that no consist manager is available.
021     */
022    public static final String ERROR_NO_CONSIST_MANAGER = "ErrorNoConsistManager"; // NOI18N
023
024    /**
025     * Prevent instantiation, since this class only contains static values
026     */
027    private JsonConsist() {
028        throw new UnsupportedOperationException("There is no valid instance of this class");
029    }
030
031}