1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.bo; |
17 | |
|
18 | |
import javax.persistence.FetchType; |
19 | |
import javax.persistence.Basic; |
20 | |
import javax.persistence.Lob; |
21 | |
import javax.persistence.Version; |
22 | |
import javax.persistence.TemporalType; |
23 | |
import javax.persistence.Temporal; |
24 | |
import javax.persistence.Column; |
25 | |
import javax.persistence.Id; |
26 | |
import javax.persistence.CascadeType; |
27 | |
import javax.persistence.Table; |
28 | |
import javax.persistence.Entity; |
29 | |
|
30 | |
@Entity |
31 | |
@Table(name="KRNS_LOOKUP_RSLT_T") |
32 | 0 | public class LookupResults extends MultipleValueLookupMetadata { |
33 | |
@Lob |
34 | |
@Basic(fetch=FetchType.LAZY) |
35 | |
@Column(name="SERIALZD_RSLTS") |
36 | |
private String serializedLookupResults; |
37 | |
|
38 | |
public String getSerializedLookupResults() { |
39 | 0 | return serializedLookupResults; |
40 | |
} |
41 | |
|
42 | |
public void setSerializedLookupResults(String serializedLookupResults) { |
43 | 0 | this.serializedLookupResults = serializedLookupResults; |
44 | 0 | } |
45 | |
} |
46 | |
|