1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.contract.model;
17
18 import java.io.Serializable;
19
20
21
22
23
24 public class SearchRow implements Serializable,
25 Cloneable {
26
27 public SearchRow() {
28 super();
29 }
30 private int rowNumber;
31
32
33
34
35
36
37 public int getRowNumber() {
38 return rowNumber;
39 }
40
41
42
43
44
45
46 public void setRowNumber(int rowNumber) {
47 this.rowNumber = rowNumber;
48 }
49 private String key;
50
51
52
53
54
55
56 public String getKey() {
57 return key;
58 }
59 private String lookupKey;
60
61
62
63
64
65
66 public String getLookupKey() {
67 return lookupKey;
68 }
69
70
71
72
73
74
75 public void setLookupKey(String lookupKey) {
76 this.lookupKey = lookupKey;
77 }
78 private String type;
79
80
81
82
83
84
85 public String getType() {
86 return type;
87 }
88
89
90
91
92
93
94 public void setType(String type) {
95 this.type = type;
96 }
97
98
99
100
101
102
103 public void setKey(String key) {
104 this.key = key;
105 }
106 private String name;
107
108
109
110
111
112
113 public String getName() {
114 return name;
115 }
116
117
118
119
120
121
122 public void setName(String name) {
123 this.name = name;
124 }
125 private String description;
126 private String dataType;
127
128
129
130
131
132
133 public String getDataType() {
134 return dataType;
135 }
136
137
138
139
140
141
142 public void setDataType(String dataType) {
143 this.dataType = dataType;
144 }
145 private String hidden;
146
147
148
149
150
151
152 public String getHidden() {
153 return hidden;
154 }
155 private String usage;
156
157
158
159
160
161
162 public String getUsage() {
163 return usage;
164 }
165 private String widget;
166
167
168
169
170
171
172 public String getWidget() {
173 return widget;
174 }
175
176
177
178
179
180
181 public void setWidget(String widget) {
182 this.widget = widget;
183 }
184 private String optional;
185
186
187
188
189
190
191 public String getOptional() {
192 return optional;
193 }
194 private String caseSensitive;
195
196
197
198
199
200
201 public String getCaseSensitive() {
202 return caseSensitive;
203 }
204
205
206
207
208
209
210 public void setCaseSensitive(String caseSensitive) {
211 this.caseSensitive = caseSensitive;
212 }
213 private String writeAccess;
214
215
216
217
218
219
220 public String getWriteAccess() {
221 return writeAccess;
222 }
223
224
225
226
227
228
229 public void setWriteAccess(String writeAccess) {
230 this.writeAccess = writeAccess;
231 }
232 private String defaultValue;
233
234
235
236
237
238
239 public String getDefaultValue() {
240 return defaultValue;
241 }
242
243
244
245
246
247
248 public void setDefaultValue(String defaultValue) {
249 this.defaultValue = defaultValue;
250 }
251 private String childLookup;
252
253
254
255
256
257
258 public String getChildLookup() {
259 return childLookup;
260 }
261
262
263
264
265
266
267 public void setChildLookup(String childLookup) {
268 this.childLookup = childLookup;
269 }
270
271
272
273
274
275
276 public void setOptional(String optional) {
277 this.optional = optional;
278 }
279
280
281
282
283
284
285 public void setUsage(String usage) {
286 this.usage = usage;
287 }
288
289
290
291
292
293
294 public void setHidden(String hidden) {
295 this.hidden = hidden;
296 }
297
298
299
300
301
302
303 public String getDescription() {
304 return description;
305 }
306
307
308
309
310
311
312 public void setDescription(String description) {
313 this.description = description;
314 }
315 private String status;
316
317
318
319
320
321
322 public String getStatus() {
323 return status;
324 }
325
326
327
328
329
330
331 public void setStatus(String status) {
332 this.status = status;
333 }
334 private String comments;
335
336
337
338
339
340
341 public String getComments() {
342 return comments;
343 }
344
345
346
347
348
349
350 public void setComments(String comments) {
351 this.comments = comments;
352 }
353
354 @Override
355 protected Object clone()
356 throws CloneNotSupportedException {
357 return super.clone();
358 }
359 private String service;
360
361
362
363
364
365
366 public String getService() {
367 return service;
368 }
369
370
371
372
373
374
375 public void setService(String service) {
376 this.service = service;
377 }
378 }