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