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 public class CommonLookup implements Serializable {
28
29 private static final long serialVersionUID = 1L;
30
31 private String id;
32 private String name;
33 private String desc;
34 private String searchTypeId;
35 private String resultReturnKey;
36 private String searchParamIdKey;
37 private List<CommonLookupParam> params;
38
39 public String getSearchTypeId() {
40 return searchTypeId;
41 }
42
43 public void setSearchTypeId(String searchTypeId) {
44 this.searchTypeId = searchTypeId;
45 }
46
47 public String getResultReturnKey() {
48 return resultReturnKey;
49 }
50
51 public void setResultReturnKey(String resultReturnKey) {
52 this.resultReturnKey = resultReturnKey;
53 }
54
55 public List<CommonLookupParam> getParams() {
56 return params;
57 }
58
59 public void setParams(List<CommonLookupParam> params) {
60 this.params = params;
61 }
62
63 public String getId() {
64 return id;
65 }
66
67 public void setId(String id) {
68 this.id = id;
69 }
70
71 public String getName() {
72 return name;
73 }
74
75 public void setName(String name) {
76 this.name = name;
77 }
78
79 public String getDesc() {
80 return desc;
81 }
82
83 public void setDesc(String desc) {
84 this.desc = desc;
85 }
86
87 public String getSearchParamIdKey() {
88 return searchParamIdKey;
89 }
90
91 public void setSearchParamIdKey(String searchParamIdKey) {
92 this.searchParamIdKey = searchParamIdKey;
93 }
94
95 }