/*************************************** * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ***************************************/ package org.jboss.util.property; /** * An interface that allows for dynamic configuration of instance objects * with properties. * * @version $Revision: 1.1 $ * @author Jason Dillon */ public interface Configurable { /** * Configure this object with the given properties. * * @param props Properties to configure from. */ void configure(PropertyMap props); }