Salome HOME
More business logic has been moved from BO to services. ServiceLocator is created...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / dao / som / VersionsRelationDAOImpl.java
1 /*****************************************************************************
2  * Company         OPEN CASCADE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   06.10.2012
6  * @author         $Author$
7  * @version        $Revision$
8  * Generated by Siman Generator on Wed Oct 17 14:28:24 MSD 2012
9  *****************************************************************************/
10
11 package org.splat.dal.dao.som;
12
13 import org.splat.dal.bo.som.VersionsRelation;
14 import org.splat.dal.dao.kernel.GenericDAOImpl;
15
16 /**
17  * VersionsRelation DAO.
18  * @author RKV
19  * 
20  */
21 public class VersionsRelationDAOImpl extends
22                 GenericDAOImpl<VersionsRelation, Long> implements VersionsRelationDAO {
23
24         /** 
25          * {@inheritDoc}
26          * @see org.splat.dal.dao.kernel.GenericDAOImpl#getType()
27          */
28         @Override
29         protected Class<VersionsRelation> getType() {
30                 return VersionsRelation.class;
31         }
32
33 }