001 /*
002 @license.text@
003 */
004 package biz.hammurapi.sql;
005
006 /**
007 * DatabaseObject subclasses shall implement this
008 * interface in order to take advantage
009 * of lazy relationship loading
010 * @author Pavel Vlasov
011 * @revision $Revision$
012 */
013 public interface Lazy {
014 SQLProcessor getProcessor();
015 }