Coverage Report - org.directdemocracyportal.democracy.service.dao.hibernate.HibernateRegionDAO
 
Classes in this File Line Coverage Branch Coverage Complexity
HibernateRegionDAO
33%
2/6
0%
0/2
1.5
 
 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.Region;
 10  
 import org.directdemocracyportal.democracy.service.dao.RegionDAO;
 11  
 import org.hibernate.criterion.DetachedCriteria;
 12  
 import org.hibernate.criterion.Restrictions;
 13  
 import org.springframework.dao.DataAccessException;
 14  
 import org.springframework.transaction.annotation.Propagation;
 15  
 import org.springframework.transaction.annotation.Transactional;
 16  
 
 17  
 /**
 18  
  * The Class HibernateRegionDAO.
 19  
  */
 20  
 @Transactional(propagation = Propagation.MANDATORY)
 21  
 public class HibernateRegionDAO extends GenericHibernateDAO<Region, Long>
 22  
         implements RegionDAO
 23  
 {
 24  
 
 25  
     /**
 26  
      * Instantiates a new hibernate region dao.
 27  
      */
 28  
     public HibernateRegionDAO() {
 29  1
         super(Region.class);
 30  1
     }
 31  
 
 32  
     /*
 33  
      * (non-Javadoc)
 34  
      *
 35  
      * @see org.directdemocracyportal.democracy.service.dao.CountryDAO#findByName(java.lang.String)
 36  
      */
 37  
     @Transactional(readOnly = true)
 38  
     public Region findByName(String name) throws DataAccessException {
 39  0
         DetachedCriteria findByName = DetachedCriteria.forClass(Region.class);
 40  0
         findByName.add(Restrictions.eq("name", name));
 41  
 
 42  
         @SuppressWarnings("unchecked")
 43  0
         List<Region> result = this.getHibernateTemplate().findByCriteria(
 44  
                 findByName);
 45  
 
 46  0
         return result.isEmpty() ? null : result.get(0);
 47  
     }
 48  
 
 49  
 }