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.config; 8 9 10 /** 11 * <p> 12 * This class is the base class of configuration structs used 13 * by Inversoft MVC implmentations such as Form-Based MVC and 14 * the ActionFlow system. 15 * </p> 16 * 17 * @author Brian Pontarelli 18 */ 19 public class BaseConfigStruct { 20 21 public BaseFormConfig baseFormConfig; 22 public BaseValidatorConfig failedValidatorConfig; 23 24 /** 25 * Constructs an empty <code>BaseConfigStruct</code> 26 */ 27 public BaseConfigStruct() { 28 // Empty default 29 } 30 31 /** 32 * Constructs a new <code>BaseConfigStruct</code> with the given references 33 */ 34 public BaseConfigStruct(BaseFormConfig baseFormConfig) { 35 this.baseFormConfig = baseFormConfig; 36 } 37 } 38