Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KSEntityConstants |
|
| 0.0;0 |
1 | package org.kuali.student.common.entity; | |
2 | ||
3 | 0 | public class KSEntityConstants { |
4 | ||
5 | // Default Length for formatted/plain text columns | |
6 | public static final int EXTRA_LONG_TEXT_LENGTH = 4000; | |
7 | ||
8 | // Default Length for long text columns | |
9 | public static final int LONG_TEXT_LENGTH = 2000; | |
10 | ||
11 | // Default Length for short text columns | |
12 | public static final int SHORT_TEXT_LENGTH = 500; | |
13 | ||
14 | public static final int ATTRIBUTE_TEXT_LENGTH = 2000; | |
15 | ||
16 | public static final int OBJ_ID_LENGTH = 36; | |
17 | ||
18 | } |