1 // Generated by: hibernate/SpringHibernateDaoImpl.vsl in andromda-spring-cartridge.
2 // license-header java merge-point
3 //
4 // Attention: Generated code! Do not modify by hand!
5 // Generated by: SpringHibernateDaoImpl.vsl in andromda-spring-cartridge.
6 //
7 package fr.ifremer.quadrige3.core.dao.referential;
8
9 /*-
10 * #%L
11 * Quadrige3 Core :: Client API
12 * %%
13 * Copyright (C) 2017 - 2024 Ifremer
14 * %%
15 * This program is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU Affero General Public License as published by
17 * the Free Software Foundation, either version 3 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU Affero General Public License
26 * along with this program. If not, see <http://www.gnu.org/licenses/>.
27 * #L%
28 */
29 import org.hibernate.SessionFactory;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.context.annotation.Lazy;
32 import org.springframework.stereotype.Repository;
33
34 /**
35 * @see fr.ifremer.quadrige3.core.dao.referential.DredgingTargetArea
36 */
37 @Repository("dredgingTargetAreaDao")
38 @Lazy
39 public class DredgingTargetAreaDaoImpl
40 extends DredgingTargetAreaDaoBase
41 {
42 /**
43 * Constructor used by Spring
44 */
45 @Autowired
46 public DredgingTargetAreaDaoImpl(SessionFactory sessionFactory) {
47 super();
48 setSessionFactory(sessionFactory);
49 }
50
51 }