| 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.MeetingTimeInfo; |
| 19 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleBatchInfo; |
| 20 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleBatchRespInfo; |
| 21 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleComponentInfo; |
| 22 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleInfo; |
| 23 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleRequestComponentInfo; |
| 24 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleRequestInfo; |
| 25 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleRespInfo; |
| 26 | |
import org.kuali.student.r2.core.scheduling.dto.ScheduleRespItemInfo; |
| 27 | |
import org.kuali.student.r2.core.scheduling.dto.TimeSlotInfo; |
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | 0 | public class SchedulingServiceConstants { |
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "scheduling"; |
| 42 | |
public static final String SERVICE_NAME_LOCAL_PART = "SchedulingService"; |
| 43 | 0 | public static final String REF_OBJECT_URI_SCHEDULE = NAMESPACE + "/" + ScheduleInfo.class.getSimpleName(); |
| 44 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_COMPONENT = NAMESPACE + "/" + ScheduleComponentInfo.class.getSimpleName(); |
| 45 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_REQUEST = NAMESPACE + "/" + ScheduleRequestInfo.class.getSimpleName(); |
| 46 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_REQUEST_COMPONENT = NAMESPACE + "/" + ScheduleRequestComponentInfo.class.getSimpleName(); |
| 47 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_TIME_SLOT = NAMESPACE + "/" + TimeSlotInfo.class.getSimpleName(); |
| 48 | 0 | public static final String REF_OBJECT_URI_MEETING_TIME = NAMESPACE + "/" + MeetingTimeInfo.class.getSimpleName(); |
| 49 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_BATCH = NAMESPACE + "/" + ScheduleBatchInfo.class.getSimpleName(); |
| 50 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_BATCH_RESP = NAMESPACE + "/" + ScheduleBatchRespInfo.class.getSimpleName(); |
| 51 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_RESP = NAMESPACE + "/" + ScheduleRespInfo.class.getSimpleName(); |
| 52 | 0 | public static final String REF_OBJECT_URI_SCHEDULE_RESP_ITEM = NAMESPACE + "/" + ScheduleRespItemInfo.class.getSimpleName(); |
| 53 | |
|
| 54 | |
public static final String TIME_SLOT_STATE_STANDARD_KEY = "kuali.scheduling.time.slot.state.standard"; |
| 55 | |
public static final String TIME_SLOT_STATE_NON_STANDARD_KEY = "kuali.scheduling.time.slot.state.non.standard"; |
| 56 | |
public static final String TIME_SLOT_TYPE_ACTIVITY_OFFERING_KEY = "kuali.scheduling.time.slot.type.activityoffering"; |
| 57 | |
public static final String TIME_SLOT_TYPE_FINAL_EXAM_KEY = "kuali.scheduling.time.slot.type.finalexam"; |
| 58 | |
|
| 59 | |
} |