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 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 return searchTypeId;
42 }
43
44 public void setSearchTypeId(String searchTypeId) {
45 this.searchTypeId = searchTypeId;
46 }
47
48 public String getResultReturnKey() {
49 return resultReturnKey;
50 }
51
52 public void setResultReturnKey(String resultReturnKey) {
53 this.resultReturnKey = resultReturnKey;
54 }
55
56 public List<CommonLookupParam> getParams() {
57 return params;
58 }
59
60 public void setParams(List<CommonLookupParam> params) {
61 this.params = params;
62 }
63
64 public String getId() {
65 return id;
66 }
67
68 public void setId(String id) {
69 this.id = id;
70 }
71
72 public String getName() {
73 return name;
74 }
75
76 public void setName(String name) {
77 this.name = name;
78 }
79
80 public String getDesc() {
81 return desc;
82 }
83
84 public void setDesc(String desc) {
85 this.desc = desc;
86 }
87
88 public String getSearchParamIdKey() {
89 return searchParamIdKey;
90 }
91
92 public void setSearchParamIdKey(String searchParamIdKey) {
93 this.searchParamIdKey = searchParamIdKey;
94 }
95
96 }