1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
package org.kuali.student.r2.core.scheduling.constants; |
16 | |
|
17 | |
import org.kuali.student.r2.common.constants.CommonServiceConstants; |
18 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleComponentInfo; |
19 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleInfo; |
20 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleRequestInfo; |
21 | |
import org.kuali.student.r2.core.scheduling.dto.TimeSlotInfo; |
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | 0 | public class SchedulingServiceConstants { |
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "scheduling"; |
36 | |
public static final String SERVICE_NAME_LOCAL_PART = "SchedulingService"; |
37 | 0 | public static final String REF_OBJECT_URI_SCHEDULE = NAMESPACE + "/" + ScheduleInfo.class.getSimpleName(); |
38 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_COMPONENT = NAMESPACE + "/" + ScheduleComponentInfo.class.getSimpleName(); |
39 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_REQUEST = NAMESPACE + "/" + ScheduleRequestInfo.class.getSimpleName(); |
40 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_TIME_SLOT = NAMESPACE + "/" + TimeSlotInfo.class.getSimpleName(); |
41 | |
} |