Salome HOME
459bd528894ed7be594788594690f70e11935f68
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / dao / kernel / UserDAO.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   06.10.2012
6  * @author         $Author$
7  * @version        $Revision$
8  *****************************************************************************/
9
10 package org.splat.dal.dao.kernel; 
11
12 import org.splat.dal.bo.kernel.User;
13 import org.splat.dal.dao.kernel.GenericDAO;
14
15 /**
16  * User DAO class implementation.
17  * @author <a href="mailto:roman.kozlov@opencascade.com">Roman Kozlov (RKV)</a>
18  *
19  */
20 public interface UserDAO extends GenericDAO<User, Long> {
21 }