Salome HOME
Modifications done to respect PMD rules. Versioning a document is fixed. Validation...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / dao / kernel / AnyDAOImpl.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 Tue Nov 06 13:38:56 MSK 2012
9  *****************************************************************************/
10
11 package org.splat.dal.dao.kernel;
12
13 import org.splat.dal.bo.kernel.Any;
14
15 /**
16  * Any DAO.
17  * @author RKV
18  * 
19  */
20 public class AnyDAOImpl extends
21                 AbstractGenericDAOImpl<Any, Long> implements AnyDAO {
22
23         /** 
24          * {@inheritDoc}
25          * @see org.splat.dal.dao.kernel.AbstractGenericDAOImpl#getType()
26          */
27         @Override
28         protected Class<Any> getType() {
29                 return Any.class;
30         }
31
32 }