| 1 | |
package org.kuali.student.common.util.krms; |
| 2 | |
|
| 3 | |
import org.kuali.rice.krms.api.engine.Term; |
| 4 | |
|
| 5 | |
|
| 6 | 0 | public class RulesExecutionConstants { |
| 7 | |
|
| 8 | |
public static final String STUDENT_DECEASED_TERM_NAME = "studentDeceased"; |
| 9 | |
public static final String CURRENT_DATE_TERM_NAME = "currentDate"; |
| 10 | |
public static final String STUDENT_ID_TERM_NAME = "studentId"; |
| 11 | |
public static final String COURSE_ID_TO_ENROLL_TERM_NAME = "courseIdToEnroll"; |
| 12 | |
public static final String CONTEXT_INFO_TERM_NAME = "contextInfo"; |
| 13 | |
public static final String COURSE_SET_TERM_NAME = "courseSet"; |
| 14 | |
public static final String GPA_FOR_COURSE_TERM_NAME = "gpaForCourse"; |
| 15 | |
public static final String GRADES_FOR_COURSE_SET_TERM_NAME = "gradesForCourseSet"; |
| 16 | |
public static final String STUDENT_COMPLETED_COURSE_IDS_TERM_NAME = "studentCompletedCourseIds"; |
| 17 | |
public static final String STUDENT_ENROLLED_COURSE_IDS_TERM_NAME = "studentEnrolledCourseIds"; |
| 18 | |
public static final String TEST_SET_SCORE_TERM_NAME = "testSetScore"; |
| 19 | |
public static final String COMPLETED_CREDITS_FOR_COURSE_SET_TERM_NAME = "creditsForCourseSet"; |
| 20 | |
public static final String REGISTRATION_TERM_TERM_NAME = "registrationTerm"; |
| 21 | |
public static final String SUMMER_ONLY_STUDENT_TERM_NAME = "summerOnlyStudent"; |
| 22 | |
public static final String MILESTONES_BY_TYPE_TERM_NAME = "milestonesByType"; |
| 23 | |
public static final String MILESTONE_TERM_NAME = "milestone"; |
| 24 | |
public static final String STUDENT_REGISTRATION_HOLDS_TERM_NAME = "studentRegistrationHolds"; |
| 25 | |
|
| 26 | 0 | public static final Term completedCourseIdsTerm = new Term(STUDENT_COMPLETED_COURSE_IDS_TERM_NAME); |
| 27 | 0 | public static final Term enrolledCourseIdsTerm = new Term(STUDENT_ENROLLED_COURSE_IDS_TERM_NAME); |
| 28 | 0 | public static final Term studentDeceasedTerm = new Term(STUDENT_DECEASED_TERM_NAME); |
| 29 | |
|
| 30 | |
public static final String COURSE_SET_ID_TERM_PROPERTY = "courseSetIdProperty"; |
| 31 | |
public static final String COURSE_ID_TERM_PROPERTY = "courseIdProperty"; |
| 32 | |
public static final String TEST_SET_ID_TERM_PROPERTY = "testSetIdProperty"; |
| 33 | |
public static final String MILESTONE_TYPE_TERM_PROPERTY = "milestoneTypeProperty"; |
| 34 | |
public static final String MILESTONE_ATP_KEY_TERM_PROPERTY = "milestoneAtpKeyProperty"; |
| 35 | |
public static final String MILESTONE_ID_TERM_PROPERTY = "milestoneIdProperty"; |
| 36 | |
public static final String ISSUE_KEY_TERM_PROPERTY = "issueKeyProperty"; |
| 37 | |
|
| 38 | |
public static final String STATEMENT_EVENT_NAME = "statementEvent"; |
| 39 | |
public static final String PROCESS_EVENT_NAME = "processEvent"; |
| 40 | |
|
| 41 | |
public static final String REGISTRATION_HOLD_WARNINGS_ATTRIBUTE = "registrationHoldWarnings"; |
| 42 | |
|
| 43 | |
public static final String DOCTYPE_CONTEXT_QUALIFIER = "docTypeName"; |
| 44 | |
public static final String STUDENT_ELIGIBILITY_DOCTYPE = "Student.Eligibility"; |
| 45 | |
public static final String SUBPROCESS_EVALUATION_EXCEPTION = "subprocessEvaluationException"; |
| 46 | |
public static final String SUBPROCESS_EVALUATION_RESULTS = "subprocessEvaluationResults"; |
| 47 | |
} |