Coverage Report - org.kuali.student.enrollment.class2.appointment.util.AppointmentConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
AppointmentConstants
0%
0/1
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  
  */
 16  
 package org.kuali.student.enrollment.class2.appointment.util;
 17  
 
 18  
 import org.kuali.rice.krad.util.KRADConstants;
 19  
 
 20  
 /**
 21  
  * This class //TODO ...
 22  
  *
 23  
  * @author Kuali Student Team
 24  
  */
 25  0
 public class AppointmentConstants {
 26  
 
 27  
     public static final String REGISTRATION_WINDOWS_EDIT_PAGE = "registrationWindowsEditPage";
 28  
     public static final String SELECT_TERM_PAGE = "selectTermForRegWindows";
 29  
     public static final String REGISTRATION_WINDOWS_MANAGEMENT_VIEW = "registrationWindowsManagementView";
 30  
 
 31  
     //Message keys
 32  
     public static final String APPOINTMENT_MSG_INFO_SAVED ="info.enroll.appointment.saved";
 33  
     public static final String APPOINTMENT_MSG_INFO_ASSIGNED ="info.enroll.appointment.assigned";
 34  
     public static final String APPOINTMENT_MSG_ERROR_TOO_MANY_STUDENTS = "error.enroll.appointment.tooManyStudents";
 35  
     public static final String APPOINTMENT_MSG_INFO_BREAK_APPOINTMENTS_SUCCESS = "info.enroll.appointment.breakAppointmentsSuccess";
 36  
     public static final String APPOINTMENT_MSG_ERROR_BREAK_APPOINTMENTS_FAILURE = "error.enroll.appointment.breakAppointmentsFailure";
 37  
     public static final String APPOINTMENT_MSG_ERROR_NO_TERMS_FOUND = "error.enroll.appointment.noTermsFound";
 38  
     public static final String APPOINTMENT_MSG_ERROR_NO_REG_PERIODS_FOR_TERM = "error.enroll.appointment.noRegPeriodsForTerm";
 39  
     public static final String APPOINTMENT_MSG_ERROR_END_DATE_REQUIRED_FOR_UNIFORM = "error.enroll.appointment.endDate.requiredForUniform";
 40  
     public static final String APPOINTMENT_MSG_ERROR_END_TIME_REQUIRED_FOR_UNIFORM = "error.enroll.appointment.endTime.requiredForUniform";
 41  
     public static final String APPOINTMENT_MSG_ERROR_START_DATE_OUT_OF_RANGE = "error.enroll.appointment.startDate.outOfRange";
 42  
     public static final String APPOINTMENT_MSG_ERROR_END_DATE_OUT_OF_RANGE = "error.enroll.appointment.endDate.outOfRange";
 43  
     public static final String APPOINTMENT_MSG_ERROR_WINDOW_SAVE_FAIL = "error.enroll.appointment.windowSaveFailed";
 44  
     public static final String APPOINTMENT_MSG_ERROR_END_DATE_IS_BEFORE_START_DATE = "error.enroll.appointment.window.endDateBeforeStartDate";
 45  
 }