1 package org.wcb.model.manager;
2
3 import org.wcb.model.vo.hibernate.FAA8710ApplicationBO;
4 import org.wcb.model.dao.IApplicantDAO;
5 import org.wcb.exception.ManagerException;
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 IApplicantManager extends IBaseManager {
27
28 IApplicantDAO getDao();
29
30 void setDao(IApplicantDAO dao);
31
32 FAA8710ApplicationBO findEntry(Integer i) throws ManagerException;
33
34 void saveApplicant(FAA8710ApplicationBO entry) throws ManagerException;
35 }