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.validator; 8 9 10 /** 11 * <p> 12 * This stores the constants used by the validator package 13 * </p> 14 * 15 * @author Brian Pontarelli 16 * @since 2.0 17 * @version 2.0 18 */ 19 public interface ValidatorConstants { 20 21 /** 22 * The name of the request parameter and hidden input tag name that stores 23 * the validator class information 24 */ 25 String VALIDATOR_PARAMETER = "formValidator"; 26 }