1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.krad.datadictionary.validation.constraint; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.List; |
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | 0 | public class CommonLookup implements Serializable { |
29 | |
|
30 | |
private static final long serialVersionUID = 1L; |
31 | |
|
32 | |
private String id; |
33 | |
private String name; |
34 | |
private String desc; |
35 | |
private String searchTypeId; |
36 | |
private String resultReturnKey; |
37 | |
private String searchParamIdKey; |
38 | |
private List<CommonLookupParam> params; |
39 | |
|
40 | |
public String getSearchTypeId() { |
41 | 0 | return searchTypeId; |
42 | |
} |
43 | |
|
44 | |
public void setSearchTypeId(String searchTypeId) { |
45 | 0 | this.searchTypeId = searchTypeId; |
46 | 0 | } |
47 | |
|
48 | |
public String getResultReturnKey() { |
49 | 0 | return resultReturnKey; |
50 | |
} |
51 | |
|
52 | |
public void setResultReturnKey(String resultReturnKey) { |
53 | 0 | this.resultReturnKey = resultReturnKey; |
54 | 0 | } |
55 | |
|
56 | |
public List<CommonLookupParam> getParams() { |
57 | 0 | return params; |
58 | |
} |
59 | |
|
60 | |
public void setParams(List<CommonLookupParam> params) { |
61 | 0 | this.params = params; |
62 | 0 | } |
63 | |
|
64 | |
public String getId() { |
65 | 0 | return id; |
66 | |
} |
67 | |
|
68 | |
public void setId(String id) { |
69 | 0 | this.id = id; |
70 | 0 | } |
71 | |
|
72 | |
public String getName() { |
73 | 0 | return name; |
74 | |
} |
75 | |
|
76 | |
public void setName(String name) { |
77 | 0 | this.name = name; |
78 | 0 | } |
79 | |
|
80 | |
public String getDesc() { |
81 | 0 | return desc; |
82 | |
} |
83 | |
|
84 | |
public void setDesc(String desc) { |
85 | 0 | this.desc = desc; |
86 | 0 | } |
87 | |
|
88 | |
public String getSearchParamIdKey() { |
89 | 0 | return searchParamIdKey; |
90 | |
} |
91 | |
|
92 | |
public void setSearchParamIdKey(String searchParamIdKey) { |
93 | 0 | this.searchParamIdKey = searchParamIdKey; |
94 | 0 | } |
95 | |
|
96 | |
} |