001 /*
002 @license.text@
003 */
004 package biz.hammurapi.config;
005
006 /**
007 * Command interface
008 * @author Pavel Vlasov
009 * @revision $Revision$
010 */
011 public interface Command {
012 void execute(Object executionContext);
013 }