1 | |
package org.kuali.student.core.enumerationmanagement.bo; |
2 | |
|
3 | |
import java.util.ArrayList; |
4 | |
import java.util.LinkedHashMap; |
5 | |
import java.util.List; |
6 | |
|
7 | |
import org.kuali.student.core.bo.KsInactivatableFromToBase; |
8 | |
|
9 | |
public class Enumeration extends KsInactivatableFromToBase { |
10 | |
|
11 | |
private static final long serialVersionUID = 1L; |
12 | |
|
13 | |
|
14 | |
private String name; |
15 | |
private String description; |
16 | |
|
17 | |
List<EnumeratedValue> enumeratedValueList; |
18 | |
|
19 | |
|
20 | 0 | public Enumeration() { |
21 | 0 | enumeratedValueList = new ArrayList<EnumeratedValue>(); |
22 | 0 | } |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
public String getName() { |
39 | 0 | return name; |
40 | |
} |
41 | |
|
42 | |
public void setName(String name) { |
43 | 0 | this.name = name; |
44 | 0 | } |
45 | |
|
46 | |
public String getDescription() { |
47 | 0 | return description; |
48 | |
} |
49 | |
|
50 | |
public void setDescription(String description) { |
51 | 0 | this.description = description; |
52 | 0 | } |
53 | |
|
54 | |
public List<EnumeratedValue> getEnumeratedValueList() { |
55 | 0 | return enumeratedValueList; |
56 | |
} |
57 | |
|
58 | |
public void setEnumeratedValueList(List<EnumeratedValue> enumerationValueList) { |
59 | 0 | this.enumeratedValueList = enumerationValueList; |
60 | 0 | } |
61 | |
|
62 | |
} |