| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.student.r2.common.util.constants; |
| 17 | |
|
| 18 | |
import org.kuali.rice.krad.keyvalues.IndicatorPersonSearchTypeValuesFinder; |
| 19 | |
import org.kuali.student.enrollment.lui.dto.LuiInfo; |
| 20 | |
import org.kuali.student.enrollment.lui.dto.LuiLuiRelationInfo; |
| 21 | |
import org.kuali.student.r2.common.constants.CommonServiceConstants; |
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | 0 | public class LuiServiceConstants { |
| 29 | |
|
| 30 | |
public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "lui"; |
| 31 | 0 | public static final String REF_OBJECT_URI_LUI = NAMESPACE + "/" + LuiInfo.class.getSimpleName(); |
| 32 | 0 | public static final String REF_OBJECT_URI_LUI_LUI_RELATION = NAMESPACE + "/" + LuiLuiRelationInfo.class.getSimpleName(); |
| 33 | |
public static final String LUI_KEY_PREFIX = "kuali.lui"; |
| 34 | |
|
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
public static final String COURSE_OFFERING_TYPE_KEY = "kuali.lui.type.course.offering"; |
| 40 | |
public static final String FORMAT_OFFERING_TYPE_KEY = "kuali.lui.type.format.offering"; |
| 41 | |
public static final String REGISTRATION_GROUP_TYPE_KEY = "kuali.lui.type.registration.group"; |
| 42 | |
|
| 43 | |
public static final String ACTIVITY_OFFERING_GROUP_TYPE_KEY = "kuali.lui.type.grouping.activity"; |
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
public static final String LECTURE_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.lecture"; |
| 49 | |
public static final String LAB_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.lab"; |
| 50 | |
public static final String DISCUSSION_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.discussion"; |
| 51 | |
public static final String TUTORIAL_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.tutorial"; |
| 52 | |
public static final String WEB_LECTURE_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.weblecture"; |
| 53 | |
public static final String WEB_DISCUSS_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.webdiscussion"; |
| 54 | |
public static final String DIRECTED_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.directed"; |
| 55 | |
public static final String STUDIO_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.studio"; |
| 56 | |
public static final String CORRESPOND_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.correspond"; |
| 57 | |
public static final String ACTIVITY_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.activity"; |
| 58 | |
public static final String COLLOQUIUM_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.colloquium"; |
| 59 | |
public static final String DEMONSTRATION_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.demonstration"; |
| 60 | |
public static final String FIELD_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.field"; |
| 61 | |
public static final String HOMEWORK_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.homework"; |
| 62 | |
public static final String INDEPEND_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.independ"; |
| 63 | |
public static final String INTERNSHIP_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.internship"; |
| 64 | |
public static final String PRIVATE_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.private"; |
| 65 | |
public static final String RECITATION_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.recitation"; |
| 66 | |
public static final String RESEARCH_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.research"; |
| 67 | |
public static final String SELF_PACED_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.selfpaced"; |
| 68 | |
public static final String COMP_BASED_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.compbased"; |
| 69 | |
public static final String VIDEO_CONF_ACTIVITY_OFFERING_TYPE_KEY = "kuali.lui.type.activity.offering.videoconf"; |
| 70 | |
public static final String ACTIVITY_OFFERING_TYPE_KEY_PREFIX = "kuali.lui.type.activity.offering."; |
| 71 | 0 | public static final String[] ALL_ACTIVITY_TYPES = { |
| 72 | |
LECTURE_ACTIVITY_OFFERING_TYPE_KEY, |
| 73 | |
LAB_ACTIVITY_OFFERING_TYPE_KEY, |
| 74 | |
DISCUSSION_ACTIVITY_OFFERING_TYPE_KEY, |
| 75 | |
TUTORIAL_ACTIVITY_OFFERING_TYPE_KEY, |
| 76 | |
WEB_LECTURE_ACTIVITY_OFFERING_TYPE_KEY, |
| 77 | |
WEB_DISCUSS_ACTIVITY_OFFERING_TYPE_KEY, |
| 78 | |
DIRECTED_ACTIVITY_OFFERING_TYPE_KEY, |
| 79 | |
STUDIO_ACTIVITY_OFFERING_TYPE_KEY, |
| 80 | |
CORRESPOND_ACTIVITY_OFFERING_TYPE_KEY, |
| 81 | |
ACTIVITY_ACTIVITY_OFFERING_TYPE_KEY, |
| 82 | |
COLLOQUIUM_ACTIVITY_OFFERING_TYPE_KEY, |
| 83 | |
DEMONSTRATION_ACTIVITY_OFFERING_TYPE_KEY, |
| 84 | |
FIELD_ACTIVITY_OFFERING_TYPE_KEY, |
| 85 | |
HOMEWORK_ACTIVITY_OFFERING_TYPE_KEY, |
| 86 | |
INDEPEND_ACTIVITY_OFFERING_TYPE_KEY, |
| 87 | |
INTERNSHIP_ACTIVITY_OFFERING_TYPE_KEY, |
| 88 | |
PRIVATE_ACTIVITY_OFFERING_TYPE_KEY, |
| 89 | |
RECITATION_ACTIVITY_OFFERING_TYPE_KEY, |
| 90 | |
RESEARCH_ACTIVITY_OFFERING_TYPE_KEY, |
| 91 | |
SELF_PACED_ACTIVITY_OFFERING_TYPE_KEY, |
| 92 | |
COMP_BASED_ACTIVITY_OFFERING_TYPE_KEY, |
| 93 | |
VIDEO_CONF_ACTIVITY_OFFERING_TYPE_KEY}; |
| 94 | |
|
| 95 | |
|
| 96 | |
|
| 97 | |
|
| 98 | |
public static final String COURSE_OFFERING_PROCESS_KEY = "kuali.course.offering.process"; |
| 99 | |
public static final String LUI_DRAFT_STATE_KEY = "kuali.lui.state.draft"; |
| 100 | |
public static final String LUI_SUBMITTED_STATE_KEY = "kuali.lui.state.submitted"; |
| 101 | |
public static final String LUI_APROVED_STATE_KEY = "kuali.lui.state.approved"; |
| 102 | |
public static final String LUI_SCHEDULED_STATE_KEY = "kuali.lui.state.scheduled"; |
| 103 | |
public static final String LUI_DELETED_STATE_KEY = "kuali.lui.state.deleted"; |
| 104 | |
public static final String LUI_OFFERED_STATE_KEY = "kuali.lui.state.offered"; |
| 105 | |
public static final String LUI_CANCELED_STATE_KEY = "kuali.lui.state.canceled"; |
| 106 | |
public static final String LUI_SUSPENDED_STATE_KEY = "kuali.lui.state.suspended"; |
| 107 | 0 | public static final String[] COURSE_OFFERING_PROCESS_STATE_KEYS = {LUI_DRAFT_STATE_KEY, |
| 108 | |
LUI_SUBMITTED_STATE_KEY, |
| 109 | |
LUI_APROVED_STATE_KEY, |
| 110 | |
LUI_SCHEDULED_STATE_KEY, |
| 111 | |
LUI_DELETED_STATE_KEY, |
| 112 | |
LUI_OFFERED_STATE_KEY, |
| 113 | |
LUI_CANCELED_STATE_KEY, |
| 114 | |
LUI_SUSPENDED_STATE_KEY |
| 115 | |
}; |
| 116 | |
|
| 117 | |
|
| 118 | |
|
| 119 | |
|
| 120 | |
public static final String LUI_LUI_RELATION_ASSOCIATED_TYPE_KEY = "kuali.lui.lui.relation.associated"; |
| 121 | |
public static final String LUI_LUI_RELATION_REGISTEREDFORVIA_TYPE_KEY = "kuali.lui.lui.relation.type.registeredforvia"; |
| 122 | |
public static final String LUI_LUI_RELATION_DELIVEREDVIA_TYPE_KEY = "kuali.lui.lui.relation.type.deliveredvia"; |
| 123 | |
|
| 124 | |
|
| 125 | |
|
| 126 | |
public static final String LUI_LUI_RELATION_PROCESS_KEY = "kuali.lui.lui.relationship.process"; |
| 127 | |
public static final String LUI_LUI_RELATION_ACTIVE_STATE_KEY = "kuali.lui.lui.relation.state.active"; |
| 128 | |
public static final String LUI_LUI_RELATION_INACTIVE_STATE_KEY = "kuali.lui.lui.relation.state.inactive"; |
| 129 | 0 | public static final String[] LUI_LUI_RELATION_PROCESS_KEYS = {LUI_LUI_RELATION_ACTIVE_STATE_KEY, |
| 130 | |
LUI_LUI_RELATION_INACTIVE_STATE_KEY}; |
| 131 | |
|
| 132 | |
|
| 133 | |
|
| 134 | |
|
| 135 | |
public static final String SEATPOOL_LUI_CAPACITY_TYPE_KEY = "kuali.lui.capacity.type.seatpool"; |
| 136 | |
|
| 137 | |
|
| 138 | |
|
| 139 | |
|
| 140 | |
public static final String LUI_CAPACITY_PROCESS_KEY = "kuali.lui.capacity.process"; |
| 141 | |
public static final String LUI_CAPACITY_ACTIVE_STATE_KEY = "kuali.lui.capacity.state.active"; |
| 142 | |
public static final String LUI_CAPACITY_INACTIVE_STATE_KEY = "kuali.lui.capacity.state.inactive"; |
| 143 | 0 | public static final String[] LUI_CAPACITY_PROCESS_KEYS = {LUI_CAPACITY_ACTIVE_STATE_KEY, |
| 144 | |
LUI_CAPACITY_INACTIVE_STATE_KEY}; |
| 145 | |
|
| 146 | |
|
| 147 | |
|
| 148 | |
|
| 149 | |
public static final String LUI_IDENTIFIER_OFFICIAL_TYPE_KEY = "kuali.lui.identifier.type.official"; |
| 150 | |
public static final String LUI_IDENTIFIER_CROSSLISTED_TYPE_KEY = "kuali.lui.identifier.type.cross-listed"; |
| 151 | |
|
| 152 | |
|
| 153 | |
|
| 154 | |
|
| 155 | |
public static final String LUI_IDENTIFIER_PROCESS_KEY = "kuali.lui.identifier.process"; |
| 156 | |
public static final String LUI_IDENTIFIER_ACTIVE_STATE_KEY = "kuali.lui.identifier.state.active"; |
| 157 | |
public static final String LUI_IDENTIFIER_INACTIVE_STATE_KEY = "kuali.lui.identifier.state.inactive"; |
| 158 | 0 | public static final String[] LUI_IDENTIFIER_PROCESS_KEYS = {LUI_IDENTIFIER_ACTIVE_STATE_KEY, |
| 159 | |
LUI_IDENTIFIER_INACTIVE_STATE_KEY}; |
| 160 | |
|
| 161 | |
|
| 162 | |
|
| 163 | |
|
| 164 | |
public static final String AUTOMATIC_WAITLIST_TYPE_KEY = "kuali.waitlist.type.automatic"; |
| 165 | |
public static final String SEMIAUTOMATIC_WAITLIST_TYPE_KEY = "kuali.waitlist.type.semiautomatic"; |
| 166 | |
public static final String MANUAL_WAITLIST_TYPE_KEY = "kuali.waitlist.type.manual"; |
| 167 | |
|
| 168 | |
|
| 169 | |
|
| 170 | |
|
| 171 | |
public static final String ALL_REGISTRATION_ORDERING_TYPE_KEY = "kuali.registration.ordering.type.all"; |
| 172 | |
|
| 173 | |
|
| 174 | |
|
| 175 | |
|
| 176 | |
|
| 177 | |
public static final String HONORS_LU_CODE = "kuali.lu.code.honorsOffering"; |
| 178 | |
|
| 179 | |
} |