001 /* 002 @license.text@ 003 */ 004 package biz.hammurapi.config; 005 006 import biz.hammurapi.convert.CompositeConverter; 007 008 /** 009 * @author Pavel Vlasov 010 * 011 * @version $Revision: 1.1 $ 012 */ 013 public interface ContextConfigurable { 014 015 /** 016 * @param context Context to read values from 017 * @param converter Converter to convert values to proper type. 018 */ 019 void configure(Context context, CompositeConverter converter) throws ConfigurationException; 020 }