1 package org.wcb.model.dao; 2 3 import org.wcb.model.vo.hibernate.FAA8710ApplicationBO; 4 import org.wcb.exception.InfrastructureException; 5 6 /** 7 * <small> 8 * Copyright (c) 2006 wbogaardt. 9 * Permission is granted to copy, distribute and/or modify this document 10 * under the terms of the GNU Free Documentation License, Version 1.2 11 * or any later version published by the Free Software Foundation; 12 * with no Invariant Sections, no Front-Cover Texts, and no Back-Cover 13 * Texts. A copy of the license is included in the section entitled "GNU 14 * Free Documentation License". 15 * <p/> 16 * $File: $ <br> 17 * $Change: $ submitted by $Author: wbogaardt $ at $DateTime: Mar 24, 2006 10:32:28 AM $ <br> 18 * </small> 19 * 20 * @author wbogaardt 21 * @version 1 22 * Date: Jun 11, 2007 23 * Time: 10:32:28 AM 24 */ 25 public interface IApplicantDAO extends IDao { 26 27 FAA8710ApplicationBO findEntry(Integer id) throws InfrastructureException; 28 }