1 /* 2 * Created on May 20, 2004 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * Full GNU LGPL license terms : http://www.gnu.org/copyleft/lesser.txt 15 * 16 * Project : iky-container 17 * Package : net.wmind.container.component 18 * Author : mchaplin@users.sourceforge.net 19 * 20 */ 21 package net.mchaplin.ioc.configuration; 22 23 import net.mchaplin.ioc.component.ComponentI; 24 25 26 27 /*** 28 * The Interface for configuration objects 29 * used to hold components states & runtime 30 * information 31 * 32 * @author matthieu 33 * 34 * $Header: 35 * $Revision: 36 * $Date: 37 * 38 */ 39 public interface ConfigurationI extends ComponentI { 40 41 }