View Javadoc

1   package org.kuali.student.enrollment.class2.grading.util;
2   
3   /*
4    * Copyright 2007 The Kuali Foundation
5    *
6    * Licensed under the Educational Community License, Version 1.0 (the "License");
7    * you may not use this file except in compliance with the License.
8    * You may obtain a copy of the License at
9    *
10   * http://www.opensource.org/licenses/ecl1.php
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  
19  //Core slice classes, just still around for reference.. needs cleanup
20  @Deprecated
21  public class GradingConstants {
22  
23      public static final String CLOSE_METHOD = "close";
24      public static final String BACK_TO_GRADING_METHOD = "backToGrading";
25      public static final String BACK_TO_TERM = "backToTerm";
26      public static final String SAVE_METHOD = "save";
27      public static final String SUBMIT_METHOD = "submit";
28      public static final String LOAD_COURSES_METHOD = "loadCourses";
29      public static final String LOAD_GRADES_ROSTER_METHOD = "loadGradeRoster";
30      public static final String UNASSIGN_GRADE_METHOD = "unassignGrade";
31      public static final String VIEW_GRADES = "viewGrades";
32      public static final String IDENTITY_SERVICE_URL = "http://rice.kuali.org/kim/v2_0";
33      public static final String IDENTITY_SERVICE_NAME = "identityService";
34  
35      public static final String SELECT_COURSE_OFFERING_PAGE = "courseOfferingPage";
36      public static final String GRADE_ROSTER_PAGE = "gradeRosterPage";
37      public static final String STUDENT_TERM_RECORD_PAGE = "selectTermPage";
38      public static final String STUDENT_CREDIT_DETAILS_PAGE = "creditDetailsPage";
39  
40      public static final String CURRENT_TERM = "201108";
41      public static final String INFO_GRADE_ROSTER_SAVED = "info.enroll.grading.saved";
42      public static final String INFO_GRADE_ROSTER_SUBMITTED = "info.enroll.grading.submitted";
43      public static final String INFO_GRADE_STUDENTS_NOT_FOUND = "info.enroll.grading.studentsNotFound";
44      public static final String WARNING_GRADING_OPTIONS_NOT_FOUND = "info.enroll.grading.gradingOptionsnotFound";
45      public static final String INFO_COURSE_NOT_FOUND_TO_GRADE = "info.enroll.grading.courseOfferingNotFound";
46  
47      public static final String GRADING_SERVICE_URL = "http://student.kuali.org/wsdl/grading";
48      public static final String GRADING_SERVICE_NAME = "GradingService";
49  
50  }