]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman-Common/src/org/splat/dal/dao/som/SimulationContextDAOImpl.java
Salome HOME
7c9782155c7ecf4cc0cd4580a848a25b4c7a873a
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / dao / som / SimulationContextDAOImpl.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.som;
11
12 import org.splat.dal.bo.som.SimulationContext;
13 import org.splat.dal.dao.kernel.GenericDAOImpl;
14
15 /**
16  * SimulationContext DAO.
17  * @author RKV
18  * 
19  */
20 public class SimulationContextDAOImpl extends
21                 GenericDAOImpl<SimulationContext, Long> implements SimulationContextDAO {
22
23         /** 
24          * {@inheritDoc}
25          * @see org.splat.dal.dao.kernel.GenericDAOImpl#getType()
26          */
27         @Override
28         protected Class<SimulationContext> getType() {
29                 return SimulationContext.class;
30         }
31
32 }