| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
package org.kuali.student.r2.common.util.constants; |
| 18 | |
|
| 19 | |
import org.kuali.student.r2.common.constants.CommonServiceConstants; |
| 20 | |
import org.kuali.student.r2.core.process.dto.CheckInfo; |
| 21 | |
import org.kuali.student.r2.core.process.dto.InstructionInfo; |
| 22 | |
import org.kuali.student.r2.core.process.dto.ProcessCategoryInfo; |
| 23 | |
import org.kuali.student.r2.core.process.dto.ProcessInfo; |
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | 0 | public class ProcessServiceConstants { |
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "process"; |
| 36 | 0 | public static final String REF_OBJECT_URI_PROCESS_CATEGORY = NAMESPACE + "/" + ProcessCategoryInfo.class.getSimpleName(); |
| 37 | 0 | public static final String REF_OBJECT_URI_PROCESS = NAMESPACE + "/" + ProcessInfo.class.getSimpleName(); |
| 38 | 0 | public static final String REF_OBJECT_URI_CHECK = NAMESPACE + "/" + CheckInfo.class.getSimpleName(); |
| 39 | 0 | public static final String REF_OBJECT_URI_INSTRUCTION = NAMESPACE + "/" + InstructionInfo.class.getSimpleName(); |
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
public static final String PROCESS_CATEGORY_TYPE_KEY_CATEGORY = "kuali.process.category.type"; |
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
public static final String PROCESS_TYPE_KEY = "kuali.process.process.type"; |
| 48 | |
|
| 49 | |
|
| 50 | |
|
| 51 | |
public static final String HOLD_CHECK_TYPE_KEY = "kuali.process.check.type.hold"; |
| 52 | |
public static final String START_DATE_CHECK_TYPE_KEY = "kuali.process.check.type.milestone.startdate"; |
| 53 | |
public static final String DEADLINE_CHECK_TYPE_KEY = "kuali.process.check.type.milestone.deadline"; |
| 54 | |
public static final String TIME_PERIOD_CHECK_TYPE_KEY = "kuali.process.check.type.milestone.period"; |
| 55 | |
public static final String PROCESS_CHECK_TYPE_KEY = "kuali.process.check.type.process"; |
| 56 | |
public static final String DIRECT_RULE_CHECK_TYPE_KEY = "kuali.process.check.type.rule.direct"; |
| 57 | |
public static final String INDIRECT_RULE_CHECK_TYPE_KEY = "kuali.process.check.type.rule.indirect"; |
| 58 | |
public static final String EQUAL_VALUE_CHECK_TYPE_KEY = "kuali.process.check.type.value.equals"; |
| 59 | |
public static final String MAXIMUM_VALUE_CHECK_TYPE_KEY = "kuali.process.check.type.value.max"; |
| 60 | |
public static final String MINIMUM_VALUE_CHECK_TYPE_KEY = "kuali.process.check.type.value.min"; |
| 61 | |
|
| 62 | |
|
| 63 | |
|
| 64 | |
public static final String INSTRUCTION_TYPE_KEY = "kuali.process.instruction.type "; |
| 65 | |
|
| 66 | |
|
| 67 | |
|
| 68 | |
public static final String PROCESS_CATEGORY_LIFECYCLE_KEY = "kuali.process.process.category.lifecycle"; |
| 69 | |
|
| 70 | |
|
| 71 | |
|
| 72 | |
public static final String PROCESS_CATEGORY_STUDENT_ELIGIBILITY = "IS_STUDENT_ELIGIBLE_FOR_REGISTRATION"; |
| 73 | |
|
| 74 | |
|
| 75 | |
|
| 76 | |
public static final String PROCESS_OWNING_ORG_GRAD_SCHOOL = "GRAD_SCHOOL_ORG"; |
| 77 | |
|
| 78 | |
|
| 79 | |
|
| 80 | |
public static final String PROCESS_LIFECYCLE_KEY = "kuali.process.process.lifecycle"; |
| 81 | |
public static final String PROCESS_ENABLED_STATE_KEY = "kuali.process.process.state.enabled"; |
| 82 | |
public static final String PROCESS_DISABLED_STATE_KEY = "kuali.process.process.state.disabled"; |
| 83 | |
public static final String PROCESS_INACTIVE_STATE_KEY = "kuali.process.process.state.inactive"; |
| 84 | 0 | public static final String[] PROCESS_LIFECYCLE_KEYS = {PROCESS_ENABLED_STATE_KEY, PROCESS_DISABLED_STATE_KEY, PROCESS_INACTIVE_STATE_KEY}; |
| 85 | |
|
| 86 | |
|
| 87 | |
|
| 88 | |
public static final String CHECK_LIFECYCLE_KEY = "kuali.process.check.lifecycle"; |
| 89 | |
public static final String PROCESS_CHECK_STATE_ENABLED = "kuali.process.check.state.enabled"; |
| 90 | |
public static final String PROCESS_CHECK_STATE_DISABLED = "kuali.process.check.state.disabled"; |
| 91 | |
public static final String PROCESS_CHECK_STATE_INACTIVE = "kuali.process.check.state.inactive"; |
| 92 | 0 | public static final String[] CHECK_LIFECYCLE_KEYS = {PROCESS_CHECK_STATE_ENABLED, PROCESS_CHECK_STATE_DISABLED, PROCESS_CHECK_STATE_INACTIVE}; |
| 93 | |
|
| 94 | |
|
| 95 | |
|
| 96 | |
public static final String INSTRUCTION_LIFECYCLE_KEY = "kuali.process.instruction.lifecycle"; |
| 97 | |
public static final String INSTRUCTION_ENABLED_STATE_KEY = "kuali.process.instruction.state.enabled"; |
| 98 | |
public static final String INSTRUCTION_DISABLED_STATE_KEY = "kuali.process.instruction.state.disabled"; |
| 99 | 0 | public static final String[] INSTRUCTION_LIFECYCLE_KEYS = {INSTRUCTION_ENABLED_STATE_KEY, INSTRUCTION_DISABLED_STATE_KEY}; |
| 100 | |
|
| 101 | |
|
| 102 | |
|
| 103 | |
public static final String PROCESS_KEY_BASIC_ELIGIBILITY = "kuali.process.registration.basic.eligibility"; |
| 104 | |
public static final String PROCESS_KEY_ELIGIBILITY_FOR_TERM = "kuali.process.registration.eligibility.for.term"; |
| 105 | |
public static final String PROCESS_KEY_HOLDS_CLEARED = "kuali.process.registration.holds.cleared"; |
| 106 | |
public static final String PROCESS_KEY_ACKNOWLEDGEMENTS_CONFIRMED = "kuali.process.registration.acknowledgements.confirmed"; |
| 107 | |
public static final String PROCESS_KEY_ELIGIBLE_FOR_COURSE = "kuali.process.registration.eligible.for.course"; |
| 108 | |
public static final String PROCESS_KEY_ELIGIBLE_FOR_COURSES = "kuali.process.registration.eligible.for.courses"; |
| 109 | |
public static final String PROCESS_KEY_REGISTER_FOR_COURSES = "kuali.process.registration.register.for.courses"; |
| 110 | |
public static final String PROCESS_KEY_VIEW_GRADES = "kuali.process.acad.record.view.grades"; |
| 111 | |
public static final String PROCESS_KEY_VIEW_GRADES_FOR_TERM = "kuali.process.acad.record.view.grades.for.term"; |
| 112 | |
public static final String PROCESS_KEY_VIEW_COURSE_GRADE = "kuali.process.acad.record.view.course.grade"; |
| 113 | |
|
| 114 | |
|
| 115 | |
|
| 116 | |
public static final String CHECK_KEY_IS_ALIVE = "kuali.check.is.alive"; |
| 117 | |
public static final String CHECK_KEY_HAS_BEEN_ADMITTED = "kuali.check.has.been.admitted"; |
| 118 | |
public static final String CHECK_KEY_HAS_CONFIRMED_INTEND_TO_ATTEND = "kuali.check.has.confirmed.intend.to.attend"; |
| 119 | |
public static final String CHECK_KEY_HAS_NOT_BEEN_EXPELLED = "kuali.check.has.not.been.expelled"; |
| 120 | |
public static final String CHECK_KEY_HAS_OVERDUE_LIBRARY_BOOK = "kuali.check.has.overdue.library.book"; |
| 121 | |
public static final String CHECK_KEY_HAS_UNPAID_LIBRARY_FINE = "kuali.check.has.unpaid.library.fine"; |
| 122 | |
public static final String CHECK_KEY_HAS_NOT_PAID_BILL_FROM_PRIOR_TERM = "kuali.check.has.not.paid.bill.from.prior.term"; |
| 123 | |
public static final String CHECK_KEY_HAS_ACKNOWLEDGED_RIAA = "kuali.check.has.acknowledged.riaa"; |
| 124 | |
public static final String CHECK_KEY_HAS_ACKNOWLEDGED_HONOR_CODE = "kuali.check.has.acknowledged.honor.code"; |
| 125 | |
public static final String CHECK_KEY_HAS_VERIFIED_EMERGENCY_CONTACT_DATA = "kuali.check.has.verified.emergency.contact.data"; |
| 126 | |
public static final String CHECK_KEY_HAS_APPLIED_TO_GRADUATE = "kuali.check.has.applied.to.graduate"; |
| 127 | |
public static final String CHECK_KEY_STUDENT_HAS_BASIC_ELIGIBILITY = "kuali.check.student.has.basic.eligibility"; |
| 128 | |
public static final String CHECK_KEY_IS_STUDENT_EXPECTED_IN_TERM = "kuali.check.is.student.expected.in.term"; |
| 129 | |
public static final String CHECK_KEY_REGISTRATION_PERIOD_IS_OPEN = "kuali.check.registration.period.is.open"; |
| 130 | |
public static final String CHECK_KEY_REGISTRATION_PERIOD_IS_NOT_CLOSED = "kuali.check.registration.period.is.not.closed"; |
| 131 | |
public static final String CHECK_KEY_REGISTRATION_HOLDS_CLEARED = "kuali.check.registration.holds.cleared"; |
| 132 | |
public static final String CHECK_KEY_ACKNOWLEDGEMENTS_CONFIRMED = "kuali.check.acknowledgements.confirmed"; |
| 133 | |
public static final String CHECK_KEY_MAX_TOTAL_CREDITS_ALLOWED = "kuali.check.max.total.credits.allowed"; |
| 134 | |
public static final String CHECK_KEY_INTERNATIONAL_STUDENT_CHECK_IN = "kuali.check.international.student.check.in"; |
| 135 | |
public static final String CHECK_KEY_IS_NOT_SUMMER_TERM = "kuali.check.is.not.summer.term"; |
| 136 | |
public static final String CHECK_KEY_MANDATORY_ADVISING_CHECK = "kuali.check.mandatory.advising.check"; |
| 137 | |
public static final String CHECK_KEY_UNRESOLVED_INCOMPLETE_GRADES = "kuali.check.unresolved.incomplete.grades"; |
| 138 | |
public static final String CHECK_KEY_ELIGIBILITY_FOR_TERM = "kuali.check.eligibility.for.term"; |
| 139 | |
public static final String CHECK_KEY_HAS_THE_NECESSARY_PREREQ = "kuali.check.has.the.necessary.prereq"; |
| 140 | |
public static final String CHECK_KEY_IS_ELIGIBLE_FOR_THE_COURSE_OFFERING = "kuali.check.is.eligible.for.the.course.offering"; |
| 141 | |
public static final String CHECK_KEY_NORTH_STUDENTS_MAX_SOUTH_CREDITS = "kuali.check.north.students.max.south.credits"; |
| 142 | |
public static final String CHECK_KEY_SOUTH_STUDENTS_MAX_NORTH_CREDITS = "kuali.check.south.students.max.north.credits"; |
| 143 | |
public static final String CHECK_KEY_STUDENT_HAS_ELIGIBILITY_FOR_EACH_COURSE = "kuali.check.student.has.eligibility.for.each.course"; |
| 144 | |
public static final String CHECK_KEY_DOES_NOT_EXCEED_CREDIT_LIMIT = "kuali.check.does.not.exceed.credit.limit"; |
| 145 | |
public static final String CHECK_KEY_DOES_NOT_MEET_CREDIT_MINIMUM = "kuali.check.does.not.meet.credit.minimum"; |
| 146 | |
public static final String CHECK_KEY_DOES_NOT_HAVE_A_TIME_CONFLICT = "kuali.check.does.not.have.a.time.conflict"; |
| 147 | |
public static final String CHECK_KEY_TOO_MANY_COURSES_DURING_INITIAL_REGISTRATION_PERIOD = "kuali.check.too.many.courses.during.initial.registration.period"; |
| 148 | |
public static final String CHECK_KEY_STUDENT_IS_ELIGIBLE_FOR_THE_COURSES = "kuali.check.student.is.eligible.for.the.courses"; |
| 149 | |
public static final String CHECK_KEY_IS_STUDENTS_REGISTRATION_WINDOW = "kuali.check.is.students.registration.window"; |
| 150 | |
public static final String CHECK_KEY_COURSE_HAS_ROOM_FOR_STUDENT_IN_A_SEATPOOL = "kuali.check.course.has.room.for.student.in.a.seatpool"; |
| 151 | |
public static final String CHECK_KEY_GRADES_HAVE_BEEN_SUBMITTED_FOR_COURSE = "kuali.check.grades.have.been.submitted.for.course"; |
| 152 | |
public static final String CHECK_KEY_HAS_COMPLETED_COURSE_EVALUATION = "kuali.check.has.completed.course.evaluation"; |
| 153 | |
} |