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.mvc.view; 8 9 10 /** 11 * <p> 12 * This interface stores the constants for the view packages 13 * </p> 14 * 15 * @author Brian Pontarelli 16 * @since 2.0 17 * @version 2.0 18 */ 19 public interface ViewConstants { 20 21 /** 22 * The name of the {@link com.inversoft.verge.util.url.URLGenerator 23 * URLGenerator} category used when generating URLs. 24 */ 25 String URL_CATEGORY_NAME = "view"; 26 27 /** 28 * The name of the first JavaScript hidden tag attached to forms for use with 29 * the MVC forms 30 */ 31 String MVC_HIDDEN_1 = "_v_h1"; 32 33 /** 34 * The name of the second JavaScript hidden tag attached to forms for use with 35 * the MVC forms 36 */ 37 String MVC_HIDDEN_2 = "_v_h2"; 38 }