1 | |
package org.kuali.student.enrollment.class1.lpr.model; |
2 | |
|
3 | |
import javax.persistence.Column; |
4 | |
import javax.persistence.Embeddable; |
5 | |
|
6 | |
import org.kuali.student.r2.common.entity.MetaEntity; |
7 | |
|
8 | |
@Embeddable |
9 | 0 | public class RequestOptionEntity extends MetaEntity { |
10 | |
|
11 | |
@Column(name = "OPTION_KEY") |
12 | |
private String optionKey; |
13 | |
|
14 | |
@Column(name = "OPTION_VALUE") |
15 | |
private String optionValue; |
16 | |
|
17 | |
public String getOptionKey() { |
18 | 0 | return optionKey; |
19 | |
} |
20 | |
|
21 | |
public void setOptionKey(String optionKey) { |
22 | 0 | this.optionKey = optionKey; |
23 | 0 | } |
24 | |
|
25 | |
public String getOptionValue() { |
26 | 0 | return optionValue; |
27 | |
} |
28 | |
|
29 | |
public void setOptionValue(String optionValue) { |
30 | 0 | this.optionValue = optionValue; |
31 | 0 | } |
32 | |
|
33 | |
} |