1 package net.sourceforge.ejtools.deploy.factories;2 3 import java.util.Iterator ;4 5 /**6 * Description of the Class7 *8 * @author letiembl9 * @created 13 décembre 200110 */11 public interface FactoryManagerService12 {13 /** Description of the Method */14 public void loadFactories();15 16 17 /**18 * Description of the Method19 *20 * @return Description of the Return Value21 */22 public Iterator listFactories();23 }24