1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lu; |
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
@author |
25 |
|
|
26 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 0 |
Complexity Density: - |
|
27 |
|
public class LUConstants { |
28 |
|
|
29 |
|
|
30 |
|
public final static String COURSE_GROUP_NAME = "course"; |
31 |
|
public final static String PROPOSAL_TYPE_COURSE_CREATE = "kuali.proposal.type.course.create"; |
32 |
|
public final static String CLU_TYPE_CREDIT_COURSE = "kuali.lu.type.CreditCourse"; |
33 |
|
public final static String PROGRAM_GROUP_NAME = "program"; |
34 |
|
public final static String PROPOSAL_TYPE_PROGRAM_CREATE = "kuali.proposal.type.program.create"; |
35 |
|
public final static String CLU_TYPE_CREDIT_PROGRAM = "kuali.lu.type.CreditProgram"; |
36 |
|
|
37 |
|
|
38 |
|
public final static String LU_LU_RELATION_TYPE_HAS_COURSE_FORMAT = "luLuRelationType.hasCourseFormat"; |
39 |
|
public final static String LU_LU_RELATION_TYPE_CONTAINS = "luLuRelationType.contains"; |
40 |
|
public final static String LU_LU_RELATION_TYPE_CROSS_LISTED = "luLuRelationType.alias"; |
41 |
|
public final static String LU_LU_RELATION_TYPE_JOINTLY_OFFERED = "luLuRelationType.colocated"; |
42 |
|
|
43 |
|
|
44 |
|
public final static String LU_STATE_DRAFT = "Draft"; |
45 |
|
public final static String LU_STATE_SUBMITTED = "Submitted"; |
46 |
|
public final static String LU_STATE_WITHDRAWN = "Withdrawn"; |
47 |
|
public final static String LU_STATE_APPROVED = "Approved"; |
48 |
|
public final static String LU_STATE_NOT_APPROVED = "Not Approved"; |
49 |
|
public final static String LU_STATE_ACTIVE = "Active"; |
50 |
|
public final static String LU_STATE_INACTIVE = "Inactive"; |
51 |
|
public final static String LU_STATE_SUPERSEDED = "Superseded"; |
52 |
|
public final static String LU_STATE_RETIRED = "Retired"; |
53 |
|
|
54 |
|
|
55 |
|
public static final String STRUCTURE_CLU_INFO = "org.kuali.student.lum.lu.dto.CluInfo"; |
56 |
|
public static final String STRUCTURE_CLU_ID_INFO = "org.kuali.student.lum.lu.dto.CluIdentifierInfo"; |
57 |
|
public static final String STRUCTURE_PROPOSAL_INFO = "org.kuali.student.lum.proposal.dto.ProposalInfo"; |
58 |
|
|
59 |
|
public static final String REF_DOC_RELATION_PROPOSAL_TYPE = "kuali.org.RefObjectType.ProposalInfo"; |
60 |
|
|
61 |
|
|
62 |
|
|
63 |
|
} |
64 |
|
|