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