| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.kuali.student.lum.lrc.dao; |
| 17 |
|
|
| 18 |
|
import java.util.List; |
| 19 |
|
|
| 20 |
|
import org.kuali.student.common.dao.CrudDao; |
| 21 |
|
import org.kuali.student.common.dao.SearchableDao; |
| 22 |
|
import org.kuali.student.common.exceptions.DoesNotExistException; |
| 23 |
|
import org.kuali.student.lum.lrc.entity.ResultComponentType; |
| 24 |
|
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 0 |
Complexity Density: - |
|
| 25 |
|
public interface LrcDao extends CrudDao, SearchableDao { |
| 26 |
|
public List<String> getResultComponentIdsByResult(String resultValueId, String resultComponentTypeKey); |
| 27 |
|
public List<String> getResultComponentIdsByResultComponentType(String resultComponentTypeKey); |
| 28 |
|
public ResultComponentType getResultComponentType(String resultComponentTypeKey) throws DoesNotExistException; |
| 29 |
|
} |