001// Generated by: hibernate/SpringHibernateDaoImpl.vsl in andromda-spring-cartridge. 002// license-header java merge-point 003// 004// Attention: Generated code! Do not modify by hand! 005// Generated by: SpringHibernateDaoImpl.vsl in andromda-spring-cartridge. 006// 007package fr.ifremer.adagio.core.dao.referential.location; 008 009/* 010 * #%L 011 * SIH-Adagio :: Core 012 * $Id:$ 013 * $HeadURL:$ 014 * %% 015 * Copyright (C) 2012 - 2014 Ifremer 016 * %% 017 * This program is free software: you can redistribute it and/or modify 018 * it under the terms of the GNU Affero General Public License as published by 019 * the Free Software Foundation, either version 3 of the License, or 020 * (at your option) any later version. 021 * 022 * This program is distributed in the hope that it will be useful, 023 * but WITHOUT ANY WARRANTY; without even the implied warranty of 024 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 025 * GNU General Public License for more details. 026 * 027 * You should have received a copy of the GNU Affero General Public License 028 * along with this program. If not, see <http://www.gnu.org/licenses/>. 029 * #L% 030 */ 031 032import org.hibernate.SessionFactory; 033import org.springframework.beans.factory.annotation.Autowired; 034import org.springframework.context.annotation.Lazy; 035import org.springframework.stereotype.Repository; 036 037/** 038 * @see fr.ifremer.adagio.core.dao.referential.location.LocationClassification 039 */ 040@Repository("locationClassificationDao") 041@Lazy 042public class LocationClassificationDaoImpl 043 extends LocationClassificationDaoBase 044{ 045 /** 046 * Constructor used by Spring 047 */ 048 @Autowired 049 public LocationClassificationDaoImpl(SessionFactory sessionFactory) { 050 super(); 051 setSessionFactory(sessionFactory); 052 } 053 054}