1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
package org.kuali.student.r2.common.util.constants; |
16 | |
|
17 | |
import org.kuali.student.r2.common.constants.CommonServiceConstants; |
18 | |
import org.kuali.student.r2.core.statement.dto.RefStatementRelationInfo; |
19 | |
import org.kuali.student.r2.core.statement.dto.ReqComponentInfo; |
20 | |
import org.kuali.student.r2.core.statement.dto.StatementInfo; |
21 | |
import org.kuali.student.r2.core.statement.dto.StatementTreeViewInfo; |
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | 0 | public class StatementServiceConstants { |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "statement"; |
35 | 0 | public static final String REF_OBJECT_URI_STATEMENT = NAMESPACE + "/" + StatementInfo.class.getSimpleName(); |
36 | 0 | public static final String REF_OBJECT_URI_REF_STATEMENT_RELATION = NAMESPACE + "/" + RefStatementRelationInfo.class.getSimpleName(); |
37 | 0 | public static final String REF_OBJECT_URI_REQ_COMPONENT = NAMESPACE + "/" + ReqComponentInfo.class.getSimpleName(); |
38 | 0 | public static final String REF_OBJECT_URI_STATEMENT_TREE_VIEW = NAMESPACE + "/" + StatementTreeViewInfo.class.getSimpleName(); |
39 | |
|
40 | |
public static final String PREREQUISITE_STATEMENT_TYPE = "kuali.statement.type.course.academicReadiness.studentEligibilityPrereq"; |
41 | |
public static final String ANTIREQUISITE_STATEMENT_TYPE = "kuali.statement.type.course.academicReadiness.antireq"; |
42 | |
public static final String COREQUISITE_STATEMENT_TYPE = "kuali.statement.type.course.academicReadiness.coreq"; |
43 | |
|
44 | |
public static final String COMPLETED_COURSE_REQ_COM_TYPE = "kuali.reqComponent.type.course.completed"; |
45 | |
public static final String ALL_OF_REQUIRED_COURSES_COMPLETED_REQ_COM_TYPE = "kuali.reqComponent.type.course.courseset.completed.all"; |
46 | |
public static final String N_OF_REQUIRED_COURSES_COMPLETED_REQ_COM_TYPE = "kuali.reqComponent.type.course.courseset.completed.nof"; |
47 | |
public static final String MAX_N_OF_COURSES_COMPLETED_REQ_COM_TYPE = "kuali.reqComponent.type.course.courseset.completed.max"; |
48 | |
public static final String NONE_OF_COURSES_COMPLETED_REQ_COM_TYPE = "kuali.reqComponent.type.course.courseset.completed.none"; |
49 | |
public static final String NOT_COMPLETED_COURSE_REQ_COM_TYPE = "kuali.reqComponent.type.course.notcompleted"; |
50 | |
public static final String ENROLLED_COURSE_REQ_COM_TYPE = "kuali.reqComponent.type.course.enrolled"; |
51 | |
public static final String ALL_OF_REQUIRED_COURSES_ENROLLED_REQ_COM_TYPE = "kuali.reqComponent.type.course.courseset.enrolled.all"; |
52 | |
public static final String N_OF_REQUIRED_COURSES_ENROLLED_REQ_COM_TYPE = "kuali.reqComponent.type.course.courseset.enrolled.nof"; |
53 | |
|
54 | |
public static final String COURSE_ID_REQ_COM_FIELD_TYPE = "kuali.reqComponent.field.type.course.clu.id"; |
55 | |
public static final String COURSE_SET_ID_REQ_COM_FIELD_TYPE = "kuali.reqComponent.field.type.course.cluSet.id"; |
56 | |
public static final String INTEGER_REQ_COM_FIELD_TYPE = "kuali.reqComponent.field.type.value.positive.integer"; |
57 | |
|
58 | |
public static final String REF_STATEMENT_RELATION_ACTIVE_STATE = "kuali.ref.statement.relation.state.active"; |
59 | |
public static final String REF_STATEMENT_RELATION_INACTIVE_STATE = "kuali.ref.statement.relation.state.inactive"; |
60 | |
|
61 | |
public static final String STATEMENT_ACTIVE_STATE = "kuali.statement.state.active"; |
62 | |
public static final String STATEMENT_INACTIVE_STATE = "kuali.statement.state.inactive"; |
63 | |
} |