Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LoCategoryRelationInfo |
|
| 1.0;1 |
1 | package org.kuali.student.lum.course.service.assembler; | |
2 | ||
3 | 1331 | public class LoCategoryRelationInfo { |
4 | private String loId; | |
5 | private String categoryId; | |
6 | public String getLoId() { | |
7 | 1331 | return loId; |
8 | } | |
9 | public void setLoId(String loId) { | |
10 | 1331 | this.loId = loId; |
11 | 1331 | } |
12 | public String getCategoryId() { | |
13 | 1331 | return categoryId; |
14 | } | |
15 | public void setCategoryId(String categoryId) { | |
16 | 1331 | this.categoryId = categoryId; |
17 | 1331 | } |
18 | } |