Coverage Report - org.kuali.student.enrollment.class2.grading.util.GradingConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
GradingConstants
0%
0/1
N/A
0
 
 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  0
 public class GradingConstants {
 20  
 
 21  
     public static final String CLOSE_METHOD = "close";
 22  
     public static final String BACK_TO_GRADING_METHOD = "backToGrading";
 23  
     public static final String BACK_TO_TERM = "backToTerm";
 24  
     public static final String SAVE_METHOD = "save";
 25  
     public static final String SUBMIT_METHOD = "submit";
 26  
     public static final String LOAD_COURSES_METHOD = "loadCourses";
 27  
     public static final String LOAD_GRADES_ROSTER_METHOD = "loadGradeRoster";
 28  
     public static final String UNASSIGN_GRADE_METHOD = "unassignGrade";
 29  
     public static final String VIEW_GRADES = "viewGrades";
 30  
     public static final String IDENTITY_SERVICE_URL = "http://rice.kuali.org/kim/v2_0";
 31  
     public static final String IDENTITY_SERVICE_NAME = "identityService";
 32  
 
 33  
     public static final String SELECT_COURSE_OFFERING_PAGE = "courseOfferingPage";
 34  
     public static final String GRADE_ROSTER_PAGE = "gradeRosterPage";
 35  
     public static final String STUDENT_TERM_RECORD_PAGE = "selectTermPage";
 36  
     public static final String STUDENT_CREDIT_DETAILS_PAGE = "creditDetailsPage";
 37  
 
 38  
     public static final String CURRENT_TERM = "201108";
 39  
     public static final String INFO_GRADE_ROSTER_SAVED = "info.enroll.grading.saved";
 40  
     public static final String INFO_GRADE_ROSTER_SUBMITTED = "info.enroll.grading.submitted";
 41  
     public static final String INFO_GRADE_STUDENTS_NOT_FOUND = "info.enroll.grading.studentsNotFound";
 42  
     public static final String WARNING_GRADING_OPTIONS_NOT_FOUND = "info.enroll.grading.gradingOptionsnotFound";
 43  
     public static final String INFO_COURSE_NOT_FOUND_TO_GRADE = "info.enroll.grading.courseOfferingNotFound";
 44  
 
 45  
     public static final String GRADING_SERVICE_URL = "http://student.kuali.org/wsdl/grading";
 46  
     public static final String GRADING_SERVICE_NAME = "GradingService";
 47  
 
 48  
 }