1 /* 2 * Copyright (c) 2003, Inversoft 3 * 4 * This software is distribuable under the GNU Lesser General Public License. 5 * For more information visit gnu.org. 6 */ 7 package com.inversoft.verge.config; 8 9 10 /** 11 * <p> 12 * This interface stores the system wide configuration 13 * constants, such as the name that different registries 14 * are stored under. This can be used to find registries 15 * during the validation process. 16 * </p> 17 * 18 * @author Brian Pontarelli 19 */ 20 public interface VergeConfigConstants { 21 22 /** 23 * The name of the context parameter that lists the configuration files 24 */ 25 String CONTEXT_PARAM = "com.inversoft.verge.config"; 26 27 /** 28 * The name that the Repository registry is stored under 29 */ 30 String REPOSITORY_KEY = "repository"; 31 32 /** 33 * The name that the Form MVC registry is stored under 34 */ 35 String FORM_KEY = "form"; 36 }