1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.student.r2.common.util.constants; |
18 | |
|
19 | |
import org.kuali.student.r2.common.constants.CommonServiceConstants; |
20 | |
import org.kuali.student.r2.core.type.dto.TypeInfo; |
21 | |
import org.kuali.student.r2.core.type.dto.TypeTypeRelationInfo; |
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | 0 | public class TypeServiceConstants { |
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
public static final String SERVICE_NAME_LOCAL_PART = "type"; |
34 | |
public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + SERVICE_NAME_LOCAL_PART; |
35 | |
public static final String REF_OBJECT_URI_DEFAULT = NAMESPACE + "COMMON/DEFAULT"; |
36 | 0 | public static final String REF_OBJECT_URI_TYPE = NAMESPACE + "/" + TypeInfo.class.getSimpleName(); |
37 | 0 | public static final String REF_OBJECT_URI_TYPE_TYPE_RELATION = NAMESPACE + "/" + TypeTypeRelationInfo.class.getSimpleName(); |
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
public static final String TYPE_TYPE_RELATION_ALLOWED_TYPE_KEY = "kuali.type.type.relation.type.allowed"; |
43 | |
public static final String TYPE_TYPE_RELATION_CONTAINS_TYPE_KEY = "kuali.type.type.relation.type.contains"; |
44 | |
public static final String TYPE_TYPE_RELATION_GROUP_TYPE_KEY = "kuali.type.type.relation.type.group"; |
45 | |
|
46 | |
|
47 | |
|
48 | |
public static final String TYPE_TYPE_RELATION_ACTIVE_STATE_KEY = "kuali.type.type.relation.state.active"; |
49 | |
public static final String TYPE_TYPE_RELATION_INACTIVE_STATE_KEY = "kuali.type.type.relation.state.inactive"; |
50 | |
} |