1 | |
package org.kuali.student.r2.common.util.constants; |
2 | |
|
3 | |
import org.kuali.student.r2.common.constants.CommonServiceConstants; |
4 | |
import org.kuali.student.r2.core.document.dto.DocumentCategoryInfo; |
5 | |
import org.kuali.student.r2.core.document.dto.DocumentInfo; |
6 | |
import org.kuali.student.r2.core.document.dto.RefDocRelationInfo; |
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | 0 | public class DocumentServiceConstants { |
16 | |
|
17 | |
|
18 | |
|
19 | |
public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "document"; |
20 | 0 | public static final String REF_OBJECT_URI_DOCUMENT = NAMESPACE + "/" + DocumentInfo.class.getSimpleName(); |
21 | 0 | public static final String REF_OBJECT_URI_DOCUMENT_CATEGORY = NAMESPACE + "/" + DocumentCategoryInfo.class.getSimpleName(); |
22 | 0 | public static final String REF_OBJECT_URI_DOCUMENT_REF_DOC_RELATION = NAMESPACE + "/" + RefDocRelationInfo.class.getSimpleName(); |
23 | |
|
24 | |
} |