001 /* 002 @license.text@ 003 */ 004 package biz.hammurapi.config; 005 006 /** 007 * Accepts or rejects instantiated and configured object 008 * @author Pavel Vlasov 009 * @version $Revision: 1.1 $ 010 */ 011 public interface ObjectAcceptor { 012 /** 013 * Accepts or rejects instantiated and configured object 014 * @param object 015 * @throws ConfigurationException 016 */ 017 void accept(Object object) throws ConfigurationException; 018 }