001 /*
002 @license.text@
003 */
004
005 package biz.hammurapi.config;
006
007
008 import org.w3c.dom.Node;
009
010
011 /**
012 * DOM configurable.
013 * @author Pavel Vlasov
014 */
015 public interface DomConfigurable {
016 /**
017 * Reads configuration from {@link org.w3c.dom.Node}
018 */
019 void configure(Node configNode, Context context) throws ConfigurationException;
020 }