View Javadoc

1   /*
2   Copyright 2010 James Pether Sörling Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
3   	$Id
4   */
5   package org.directdemocracyportal.democracy.service.dao.hibernate;
6   
7   import java.util.List;
8   
9   import org.directdemocracyportal.democracy.model.world.Government;
10  import org.directdemocracyportal.democracy.model.world.OrganisationType;
11  import org.directdemocracyportal.democracy.service.dao.GovernmentDAO;
12  import org.hibernate.criterion.DetachedCriteria;
13  import org.hibernate.criterion.Restrictions;
14  import org.springframework.transaction.annotation.Propagation;
15  import org.springframework.transaction.annotation.Transactional;
16  
17  /***
18   * The Class HibernateGovernmentDAO.
19   */
20  @Transactional(propagation = Propagation.MANDATORY)
21  public class HibernateGovernmentDAO extends
22          GenericHibernateDAO<Government, Long> implements GovernmentDAO
23  {
24  
25      /***
26       * Instantiates a new hibernate government dao.
27       */
28      public HibernateGovernmentDAO() {
29          super(Government.class);
30      }
31  
32      /*
33       * (non-Javadoc)
34       *
35       * @see org.directdemocracyportal.democracy.service.dao.GovernmentDAO#getAllNationalGovernments()
36       */
37      @Override
38      public List<Government> getAllNationalGovernments() {
39          DetachedCriteria findNational = DetachedCriteria
40                  .forClass(Government.class);
41          findNational.add(Restrictions.eq("organisationType",
42                  OrganisationType.National));
43  
44          @SuppressWarnings("unchecked")
45          List<Government> result = this.getHibernateTemplate().findByCriteria(
46                  findNational);
47          return result;
48      }
49  
50  }