1 package org.wcb.model.manager;
2
3 import org.wcb.model.dao.IDao;
4
5 import java.util.List;
6
7 /**
8 * <small>
9 * Copyright (c) 2006 wbogaardt.
10 * Permission is granted to copy, distribute and/or modify this document
11 * under the terms of the GNU Free Documentation License, Version 1.2
12 * or any later version published by the Free Software Foundation;
13 * with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
14 * Texts. A copy of the license is included in the section entitled "GNU
15 * Free Documentation License".
16 * <p/>
17 * $File: $ <br>
18 * $Change: $ submitted by $Author: wbogaardt $ at $DateTime: Mar 24, 2006 11:14:01 AM $ <br>
19 * </small>
20 *
21 * @author wbogaardt
22 * @version 1
23 * Date: June 11, 2007
24 * Time: 10:00:01 AM
25 */
26 public interface IBaseManager {
27 void setDao(IDao oDAO);
28
29 List getBy(Class clazz, String property, Object value);
30 }