1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.contract.model;
17
18
19
20
21
22
23
24 public class Constraint {
25
26 public static final String UNBOUNDED = "(unbounded)";
27 public static final String NINE_NINES = "999999999";
28
29 public Constraint() {
30 super();
31 }
32 private String id;
33
34
35
36
37
38
39 public String getId() {
40 return id;
41 }
42
43
44
45
46
47
48 public void setId(String id) {
49 this.id = id;
50 }
51 private String key;
52
53
54
55
56
57
58 public String getKey() {
59 return key;
60 }
61
62
63
64
65
66
67 public void setKey(String key) {
68 this.key = key;
69 }
70 private String desc;
71
72
73
74
75
76
77 public String getDesc() {
78 return desc;
79 }
80
81
82
83
84
85
86 public void setDesc(String desc) {
87 this.desc = desc;
88 }
89 private String serverSide;
90
91
92
93
94
95
96 public String getServerSide() {
97 return serverSide;
98 }
99
100
101
102
103
104
105 public void setServerSide(String serverSide) {
106 this.serverSide = serverSide;
107 }
108 private String minLength;
109
110
111
112
113
114
115 public String getMinLength() {
116 return minLength;
117 }
118
119
120
121
122
123
124 public void setMinLength(String minLength) {
125 this.minLength = minLength;
126 }
127 private String maxLength;
128
129
130
131
132
133
134 public String getMaxLength() {
135 return maxLength;
136 }
137
138
139
140
141
142
143 public void setMaxLength(String maxLength) {
144 this.maxLength = maxLength;
145 }
146 private String minValue;
147
148
149
150
151
152
153 public String getMinValue() {
154 return minValue;
155 }
156
157
158
159
160
161
162 public void setMinValue(String minValue) {
163 this.minValue = minValue;
164 }
165 private String maxValue;
166
167
168
169
170
171
172 public String getMaxValue() {
173 return maxValue;
174 }
175
176
177
178
179
180
181 public void setMaxValue(String maxValue) {
182 this.maxValue = maxValue;
183 }
184 protected String minOccurs;
185
186
187
188
189
190
191 public String getMinOccurs() {
192 return minOccurs;
193 }
194
195
196
197
198
199
200 public void setMinOccurs(String minOccurs) {
201 this.minOccurs = minOccurs;
202 }
203 private String maxOccurs;
204
205
206
207
208
209
210 public String getMaxOccurs() {
211 return maxOccurs;
212 }
213
214
215
216
217
218
219 public void setMaxOccurs(String maxOccurs) {
220 this.maxOccurs = maxOccurs;
221 }
222 private String validChars;
223
224
225
226
227
228
229 public String getValidChars() {
230 return validChars;
231 }
232
233
234
235
236
237
238 public void setValidChars(String validChars) {
239 this.validChars = validChars;
240 }
241 private String lookup;
242
243
244
245
246
247
248 public String getLookup() {
249 return lookup;
250 }
251
252
253
254
255
256
257 public void setLookup(String lookup) {
258 this.lookup = lookup;
259 }
260 protected String lookupContext;
261
262
263
264
265
266
267 public String getLookupContext() {
268 return lookupContext;
269 }
270
271
272
273
274
275
276 public void setLookupContext(String lookupContext) {
277 this.lookupContext = lookupContext;
278 }
279 private String comments;
280
281
282
283
284
285
286 public String getComments() {
287 return comments;
288 }
289
290
291
292
293
294
295 public void setComments(String comments) {
296 this.comments = comments;
297 }
298 private String className;
299
300
301
302
303
304
305 public String getClassName() {
306 return className;
307 }
308
309
310
311
312
313
314 public void setClassName(String className) {
315 this.className = className;
316 }
317 private String messageId;
318
319 public String getMessageId() {
320 return messageId;
321 }
322
323 public void setMessageId(String messageId) {
324 this.messageId = messageId;
325 }
326 private boolean inline;
327
328 public boolean isInline() {
329 return inline;
330 }
331
332 public void setInline(boolean inline) {
333 this.inline = inline;
334 }
335 }