Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
StateProcessDao |
|
| 1.0;1 |
1 | package org.kuali.student.r2.common.dao; | |
2 | ||
3 | import org.kuali.student.enrollment.dao.GenericEntityDao; | |
4 | import org.kuali.student.r2.common.model.StateProcessEntity; | |
5 | ||
6 | 0 | public class StateProcessDao extends GenericEntityDao<StateProcessEntity>{ |
7 | public StateProcessEntity getProcessByKey(String processKey){ | |
8 | 0 | return find(processKey); |
9 | } | |
10 | } |