1 | |
package org.kuali.student.lum.lu.ui.course.client.configuration; |
2 | |
|
3 | |
import org.kuali.student.common.ui.client.mvc.DataModel; |
4 | |
import org.kuali.student.core.workflow.ui.client.widgets.ContentConfigurer; |
5 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.AffiliatedOrgInfoConstants; |
6 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.CreditCourseActivityConstants; |
7 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.CreditCourseConstants; |
8 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.CreditCourseDurationConstants; |
9 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.CreditCourseExpenditureInfoConstants; |
10 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.CreditCourseFormatConstants; |
11 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.CreditCourseRevenueInfoConstants; |
12 | |
import org.kuali.student.lum.lu.assembly.data.client.constants.orch.FeeInfoConstants; |
13 | |
|
14 | 0 | public abstract class AbstractCourseConfigurer extends org.kuali.student.common.ui.client.configurable.mvc.Configurer |
15 | |
implements ContentConfigurer, |
16 | |
CreditCourseConstants, |
17 | |
CreditCourseFormatConstants, |
18 | |
CreditCourseActivityConstants, |
19 | |
CreditCourseDurationConstants, |
20 | |
FeeInfoConstants, |
21 | |
AffiliatedOrgInfoConstants, |
22 | |
CreditCourseRevenueInfoConstants, |
23 | |
CreditCourseExpenditureInfoConstants |
24 | |
{ |
25 | |
public static final String CLU_PROPOSAL_MODEL = "cluProposalModel"; |
26 | |
public static final String PROPOSAL_REFERENCE_TYPE_KEY = "referenceType.clu.proposal"; |
27 | |
public static final String PROPOSAL_REFERENCE_OBJECT_TYPE = "kuali.lu.type.CreditCourse"; |
28 | |
|
29 | |
|
30 | |
public String getModelId(){ |
31 | 0 | return CLU_PROPOSAL_MODEL; |
32 | |
}; |
33 | |
|
34 | |
public String getProposalReferenceTypeKey(){ |
35 | 0 | return PROPOSAL_REFERENCE_TYPE_KEY; |
36 | |
} |
37 | |
|
38 | |
public String getProposalReferenceObjectType(){ |
39 | 0 | return PROPOSAL_REFERENCE_OBJECT_TYPE; |
40 | |
} |
41 | |
|
42 | |
public abstract String getProposalPath(); |
43 | |
|
44 | |
public abstract String getProposalTitlePath(); |
45 | |
|
46 | |
public abstract String getCourseTitlePath(); |
47 | |
|
48 | |
public abstract String getSectionTitle(DataModel model); |
49 | |
|
50 | |
public abstract String getProposalHeaderTitle(DataModel model); |
51 | |
|
52 | |
public abstract Class<? extends Enum<?>> getViewsEnum(); |
53 | |
} |