Coverage Report - org.kuali.student.r2.core.scheduling.constants.SchedulingServiceConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
SchedulingServiceConstants
0%
0/11
N/A
0
 
 1  
 /*
 2  
  * Copyright 2012 The Kuali Foundation Licensed under the
 3  
  *  Educational Community License, Version 2.0 (the "License"); you may
 4  
  *  not use this file except in compliance with the License. You may
 5  
  *  obtain a copy of the License at
 6  
  *
 7  
  *   http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  *  Unless required by applicable law or agreed to in writing,
 10  
  *  software distributed under the License is distributed on an "AS IS"
 11  
  *  BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  *  or implied. See the License for the specific language governing
 13  
  *  permissions and limitations under the License.
 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  
  * This class holds the constants used by the Appointment service
 32  
  *
 33  
  * @Version 1.0
 34  
  * @Author Sri komandur@uw.edu
 35  
  */
 36  0
 public class SchedulingServiceConstants {
 37  
 
 38  
     /**
 39  
      * Reference Object URI's
 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  
 }