Salome HOME
Refactoring of Database, replacing SQL by DAOs calls. Methods for search by criteria...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / dao / som / DocumentDAO.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   06.10.2012
6  * @author         $Author$
7  * @version        $Revision$
8  * Generated by Siman Generator on Tue Oct 16 14:37:09 MSD 2012
9  *****************************************************************************/
10
11 package org.splat.dal.dao.som; 
12
13 import org.splat.dal.bo.som.Document;
14 import org.splat.dal.dao.kernel.GenericDAO;
15
16 /**
17  * Document DAO class implementation.
18  * @author <a href="mailto:roman.kozlov@opencascade.com">Roman Kozlov (RKV)</a>
19  *
20  */
21 public interface DocumentDAO extends GenericDAO<Document, Long> {
22 }