View Javadoc

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 General Public License (GPL) Version 2.0.
13   * 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 General Public License for more details.
19   *
20   * For alternative licensing, please contact info@elca.ch
21   */
22  
23  @AutocollectedGenericDao(value="titi")
24  public class Dao1 extends DummyDao<String> implements GenericDao<String> {
25  
26  }