View Javadoc

1   /***
2   Copyright (C) 2005 The Java Community
3   
4   This program is free software; you can redistribute it and/or modify  it under
5   the terms of the GNU General Public License as published by  the Free Software
6   Foundation; either version 2 of the License, or  (at your option) any later
7   version.
8   
9   This program is distributed in the hope that it will be useful,  but WITHOUT
10  ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS
11  FOR A PARTICULAR PURPOSE. See the  GNU General Public License for more details.
12  
13  You should have received a copy of the GNU General Public License  along with
14  this program; if not, write to the Free Software  Foundation, Inc., 59 Temple
15  Place, Suite 330, Boston, MA 02111-1307 USA.
16  
17  */
18  package org.bejug.javacareers.jobs.dao.hibernate;
19  
20  import org.bejug.javacareers.jobs.model.Profile;
21  
22  /***
23   *
24   * @author Bart Meyers (last modified by $Author: ge0ffrey $)
25   * @version $Revision: 1.1 $ - $Date: 2005/08/26 07:58:30 $
26   */
27  public class ProfileDaoHibernateImpl
28  		extends AbstractParameterDaoHibernateImpl {
29      
30      /***
31       * default constructor.
32       */
33      public ProfileDaoHibernateImpl() {
34          setClazz(Profile.class);
35      }
36     
37  }
38  /***
39   * $Log: ProfileDaoHibernateImpl.java,v $
40   * Revision 1.1  2005/08/26 07:58:30  ge0ffrey
41   * split up the sources in service, serviceimpl and webclient
42   *
43   * Revision 1.2  2005/06/09 08:18:44  bejug_cc
44   * Fix initial import
45   *
46   * Revision 1.6  2005/05/30 09:31:47  bme
47   * updated for the introduction of HQL in the hbm-files
48   *
49   * Revision 1.5  2005/05/09 13:26:06  bme
50   * updated for the introduction of the 'generalised' parameterhandling
51   *
52   * Revision 1.4  2005/05/04 09:47:56  bme
53   * modified for introduction AOP
54   *
55   * Revision 1.3  2005/05/01 07:58:08  sja
56   * Implemented ProfileDao methods and inherited JavaDoc.
57   *
58   * Revision 1.2  2005/04/29 22:15:50  ssc
59   * added abstract Dao class
60   *
61   * Revision 1.1  2005/04/29 18:17:34  sja
62   * General cleanup (naming conv., javadoc and CVS tags)
63   *
64   * Revision 1.6  2005/04/29 14:19:25  ssc
65   * added abstract Dao class
66   *
67   * Revision 1.5  2005/04/29 05:50:20  bme
68   * timestamp issues
69   *
70   * Revision 1.4  2005/04/25 08:07:40  bme
71   * *** empty log message ***
72   *
73   * Revision 1.1  2005/04/22 12:12:10  bme
74   * First Release
75   *
76   */