1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.r2.common.util.constants; |
17 | |
|
18 | |
import org.kuali.student.r2.common.constants.CommonServiceConstants; |
19 | |
import org.kuali.student.r2.core.comment.dto.CommentInfo; |
20 | |
import org.kuali.student.r2.core.comment.dto.TagInfo; |
21 | |
import org.kuali.student.r2.core.room.dto.BuildingInfo; |
22 | |
import org.kuali.student.r2.core.room.dto.RoomInfo; |
23 | |
import org.kuali.student.r2.core.room.infc.RoomResponsibleOrg; |
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | 0 | public class RoomServiceConstants { |
33 | |
|
34 | |
|
35 | |
|
36 | |
public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "room"; |
37 | 0 | public static final String REF_OBJECT_URI_ROOM = NAMESPACE + "/" + RoomInfo.class.getSimpleName(); |
38 | 0 | public static final String REF_OBJECT_URI_BUILDING = NAMESPACE + "/" + BuildingInfo.class.getSimpleName(); |
39 | 0 | public static final String REF_OBJECT_URI_ROOM_RESPONSIBLE_ORG = NAMESPACE + "/" + RoomResponsibleOrg.class.getSimpleName(); |
40 | |
} |