001 /*
002 @license.text@
003 */
004 package biz.hammurapi.convert;
005
006 /**
007 * Converts one object to another
008 * @author Pavel Vlasov
009 *
010 * @version $Revision: 1.1 $
011 */
012 public interface Converter {
013 Object convert(Object source);
014 }