1 | |
package org.kuali.student.core.dictionary.service.impl; |
2 | |
|
3 | |
import org.kuali.student.core.dictionary.dto.FieldDefinition; |
4 | |
import org.kuali.student.core.dictionary.dto.ObjectStructureDefinition; |
5 | |
|
6 | 0 | public class DictionaryConstants |
7 | |
{ |
8 | |
|
9 | 0 | public static final String OBJECT_STRUCTURE_CLASS = |
10 | |
ObjectStructureDefinition.class.getSimpleName (); |
11 | 0 | public static final String FIELD_DEFINITION_CLASS = |
12 | |
FieldDefinition.class.getSimpleName (); |
13 | |
public static final String ATTRIBUTES = "attributes"; |
14 | |
public static final String NAME = "name"; |
15 | |
public static final String HAS_META_DATA = "hasMetaData"; |
16 | |
public static final String DATA_OBJECT_STRUCTURE = "dataObjectStructure"; |
17 | |
public static final String BASE_REPEATING_INTEGER_FIELD = |
18 | |
"baseRepeatingInteger"; |
19 | |
public static final String BASE_REPEATING_LONG_FIELD = "baseRepeatingLong"; |
20 | |
public static final String BASE_REPEATING_DOUBLE_FIELD = "baseRepeatingDouble"; |
21 | |
public static final String BASE_REPEATING_FLOAT_FIELD = "baseRepeatingFloat"; |
22 | |
public static final String BASE_REPEATING_BOOLEAN_FIELD = |
23 | |
"baseRepeatingBoolean"; |
24 | |
public static final String BASE_REPEATING_DATE_FIELD = "baseRepeatingDate"; |
25 | |
public static final String BASE_REPEATING_STRING_FIELD = "baseRepeatingString"; |
26 | |
public static final String BASE_REPEATING_COMPLEX_FIELD = |
27 | |
"baseRepeatingComplex"; |
28 | |
public static final String BASE_SINGLE_INTEGER_FIELD = "baseSingleInteger"; |
29 | |
public static final String BASE_SINGLE_LONG_FIELD = "baseRepeatingLong"; |
30 | |
public static final String BASE_SINGLE_DOUBLE_FIELD = "baseSingleDouble"; |
31 | |
public static final String BASE_SINGLE_FLOAT_FIELD = "baseSingleFloat"; |
32 | |
public static final String BASE_SINGLE_BOOLEAN_FIELD = "baseSingleBoolean"; |
33 | |
public static final String BASE_SINGLE_DATE_FIELD = "baseSingleDate"; |
34 | |
public static final String BASE_SINGLE_STRING_FIELD = "baseSingleString"; |
35 | |
public static final String BASE_SINGLE_COMPLEX_FIELD = "baseSingleComplex"; |
36 | |
public static final String BASE_ID_FIELD = "baseId"; |
37 | |
|
38 | |
|
39 | |
} |