1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved. 2 3 package jodd.madvoc.config; 4 5 import jodd.madvoc.WebApplication; 6 7 /** 8 * Implementations provide full or partial Madvoc web application configuration. 9 * May be used for manual configuration. There may be more than one configuration. 10 * 11 * @see AutomagicMadvocConfig 12 */ 13 public interface MadvocConfig { 14 15 public void configure(WebApplication webapp); 16 } 17