Coverage Report - org.directdemocracyportal.democracy.service.dao.hibernate.HibernateUserDAO
 
Classes in this File Line Coverage Branch Coverage Complexity
HibernateUserDAO
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.application.User;
 10  
 import org.directdemocracyportal.democracy.service.dao.UserDAO;
 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 HibernateUserDAO.
 19  
  */
 20  
 @Transactional(propagation = Propagation.MANDATORY)
 21  
 public class HibernateUserDAO extends GenericHibernateDAO<User, Long> implements
 22  
         UserDAO
 23  
 {
 24  
 
 25  
     /**
 26  
      * Instantiates a new hibernate user dao.
 27  
      */
 28  
     public HibernateUserDAO() {
 29  1
         super(User.class);
 30  1
     }
 31  
 
 32  
     /*
 33  
      * (non-Javadoc)
 34  
      *
 35  
      * @see org.directdemocracyportal.democracy.service.dao.UserDAO#findByUsername(java.lang.String)
 36  
      */
 37  
     @Transactional(readOnly = true)
 38  
     public User findByUsername(String username) throws DataAccessException {
 39  0
         DetachedCriteria findUserByName = DetachedCriteria.forClass(User.class);
 40  0
         findUserByName.add(Restrictions.eq("username", username));
 41  
 
 42  
         @SuppressWarnings("unchecked")
 43  0
         List<User> result = this.getHibernateTemplate().findByCriteria(
 44  
                 findUserByName);
 45  
 
 46  0
         return result.isEmpty() ? null : result.get(0);
 47  
     }
 48  
 }