1 package ch.elca.el4j.tests.services.persistence.generic.dao;
2
3 import ch.elca.el4j.services.persistence.generic.dao.AutocollectedGenericDao;
4 import ch.elca.el4j.services.persistence.generic.dao.GenericDao;
5
6 /*
7 * EL4J, the Extension Library for the J2EE, adds incremental enhancements to
8 * the spring framework, http://el4j.sf.net
9 * Copyright (C) 2006 by ELCA Informatique SA, Av. de la Harpe 22-24,
10 * 1000 Lausanne, Switzerland, http://www.elca.ch
11 *
12 * EL4J is published under the GNU Lesser General Public License (LGPL)
13 * Version 2.1. See http://www.gnu.org/licenses/
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
19 *
20 * For alternative licensing, please contact info@elca.ch
21 */
22
23 /**
24 * @svnLink $Revision: 4010 $;$Date: 2009-12-01 10:59:54 +0100 (Di, 01. Dez 2009) $;$Author: jonasha $;$URL: https://el4j.svn.sourceforge.net/svnroot/el4j/branches/el4j_3_1/el4j/framework/modules/core/src/test/java/ch/elca/el4j/tests/services/persistence/generic/dao/Dao1.java $
25 */
26 @AutocollectedGenericDao(value="titi")
27 public class Dao1 extends DummyDao<String> {
28
29 }