1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.core.api; |
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
public final class CoreConstants { |
27 | |
|
28 | |
public static final class Services { |
29 | |
public static final String DATETIME_SERVICE = "dateTimeService"; |
30 | |
public static final String ENCRYPTION_SERVICE = "encryptionService"; |
31 | |
|
32 | 0 | private Services() { |
33 | 0 | throw new UnsupportedOperationException("do not call"); |
34 | |
} |
35 | |
} |
36 | |
|
37 | |
public static final class Namespaces { |
38 | |
public static final String ROOT_NAMESPACE_PREFIX = "http://rice.kuali.org"; |
39 | |
public static final String CORE_NAMESPACE_PREFIX = CoreConstants.Namespaces.ROOT_NAMESPACE_PREFIX + "/core"; |
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
public static final String VERSION_2_0 = "v2_0"; |
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
public static final String CORE_NAMESPACE_2_0 = CORE_NAMESPACE_PREFIX + "/" + VERSION_2_0; |
51 | |
|
52 | 0 | private Namespaces() { |
53 | 0 | throw new UnsupportedOperationException("do not call"); |
54 | |
} |
55 | |
} |
56 | |
|
57 | |
public static final class CommonElements { |
58 | |
public static final String FUTURE_ELEMENTS = "_futureElements"; |
59 | |
public static final String VERSION_NUMBER = "versionNumber"; |
60 | |
public static final String OBJECT_ID = "objectId"; |
61 | |
public static final String ACTIVE = "active"; |
62 | |
public static final String ACTIVE_FROM_DATE = "activeFromDate"; |
63 | |
public static final String ACTIVE_TO_DATE = "activeToDate"; |
64 | |
|
65 | 0 | private CommonElements() { |
66 | 0 | throw new UnsupportedOperationException("do not call"); |
67 | |
} |
68 | |
} |
69 | |
|
70 | |
public static final String STRING_TO_DATE_FORMATS = "STRING_TO_DATE_FORMATS"; |
71 | |
public static final String STRING_TO_TIMESTAMP_FORMATS = "STRING_TO_TIMESTAMP_FORMATS"; |
72 | |
public static final String DATE_TO_STRING_FORMAT_FOR_USER_INTERFACE = "DATE_TO_STRING_FORMAT_FOR_USER_INTERFACE"; |
73 | |
public static final String TIMESTAMP_TO_STRING_FORMAT_FOR_USER_INTERFACE = "TIMESTAMP_TO_STRING_FORMAT_FOR_USER_INTERFACE"; |
74 | |
public static final String DATE_TO_STRING_FORMAT_FOR_FILE_NAME = "DATE_TO_STRING_FORMAT_FOR_FILE_NAME"; |
75 | |
public static final String TIMESTAMP_TO_STRING_FORMAT_FOR_FILE_NAME = "TIMESTAMP_TO_STRING_FORMAT_FOR_FILE_NAME"; |
76 | |
|
77 | 0 | private CoreConstants() { |
78 | 0 | throw new UnsupportedOperationException("do not call"); |
79 | |
} |
80 | |
} |