Clover Coverage Report - KS R2 POC 0.0.1-SNAPSHOT (Aggregated)
Coverage timestamp: Mon May 23 2011 04:02:06 EDT
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
1   17   1   1
0   10   1   1
1     1  
1    
 
  LprDao       Line # 11 1 0% 1 2 0% 0.0
 
No Tests
 
1    package org.kuali.student.enrollment.lpr.dao;
2   
3    import org.kuali.student.enrollment.lpr.model.LuiPersonRelationEntity;
4   
5    import javax.persistence.EntityManager;
6    import java.util.List;
7   
8    /**
9    * @author Igor
10    */
 
11    public class LprDao extends GenericEntityDao<LuiPersonRelationEntity> {
12   
 
13  0 toggle @SuppressWarnings({"unchecked"})
14    public List<LuiPersonRelationEntity> getByLuiId(String luiId) {
15  0 return (List<LuiPersonRelationEntity>) em.createQuery("from LuiPersonRelationEntity pr where pr.luiId=:luiId").setParameter("luiId", luiId).getResultList();
16    }
17    }