View Javadoc

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   * Created by vgadiyak on 9/12/12
16   */
17  package org.kuali.student.enrollment.class2.scheduleofclasses.util;
18  
19  /**
20   * This class //TODO ...
21   *
22   * @author Kuali Student Team
23   */
24  public class ScheduleOfClassesConstants {
25  
26      // Errors
27      public static final String SOC_MSG_ERROR_TERM_IS_EMPTY = "error.enroll.scheduleofclasses.termIsEmpty";
28      public static final String SOC_MSG_ERROR_COURSE_IS_EMPTY = "error.enroll.scheduleofclasses.courseIsEmpty";
29      public static final String SOC_MSG_ERROR_INSTRUCTOR_IS_EMPTY = "error.enroll.scheduleofclasses.instructorIsEmpty";
30      public static final String SOC_MSG_ERROR_DEPARTMENT_IS_EMPTY = "error.enroll.scheduleofclasses.departmentIsEmpty";
31      public static final String SOC_MSG_ERROR_TITLEDESC_IS_EMPTY = "error.enroll.scheduleofclasses.titleDescIsEmpty";
32      public static final String SOC_MSG_ERROR_NO_COURSE_OFFERING_IS_FOUND = "error.enroll.scheduleofclasses.noCourseOfferingIsFound";
33      public static final String SOC_MSG_ERROR_MULTIPLE_DEPARTMENT_IS_FOUND = "error.enroll.scheduleofclasses.multipleDepartmentIsFound";
34      public static final String SOC_MSG_ERROR_MULTIPLE_INSTRUCTOR_IS_FOUND = "error.enroll.scheduleofclasses.multipleInstructorIsFound";
35  
36      // Page IDs
37      public static final String SOC_RESULT_PAGE = "scheduleOfClassesResultsPage";
38  
39      // Help statements
40      public static final String SOC_RESULT_PAGE_HELP_HONORS_COURSE = "Honors course";
41      public static final String SOC_RESULT_PAGE_HELP_STUREG_PASSFAIL = "May be taken as Pass/Fail grading option";
42      public static final String SOC_RESULT_PAGE_HELP_STUREG_AUDIT = "May be taken as Audit grading option";
43      public static final String SOC_RESULT_PAGE_HELP_GRADING_SATISFACTORY = "Assessment by Satisfactory/Fail";
44      public static final String SOC_RESULT_PAGE_HELP_GRADING_PERCENT = "Assessment by Percentage";
45      public static final String SOC_RESULT_PAGE_HELP_HONORS_ACTIVITY = "Honors activity";
46  
47      // Images locations
48      public static final String SOC_RESULT_PAGE_HONORS_COURSE_IMG = "../ks-enroll/images/h.png";
49      public static final String SOC_RESULT_PAGE_STUREG_PASSFAIL_IMG = "../ks-enroll/images/p.png";
50      public static final String SOC_RESULT_PAGE_STUREG_AUDIT_IMG = "../ks-enroll/images/a.png";
51      public static final String SOC_RESULT_PAGE_GRADING_SATISFACTORY_IMG = "../ks-enroll/images/s.png";
52      public static final String SOC_RESULT_PAGE_GRADING_PERCENT_IMG = "../ks-enroll/images/percent.png";
53      public static final String SOC_RESULT_PAGE_SUBTERM_IMG = "../ks-enroll/images/subterm_icon.png";
54  }