1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.student.r2.core.class1.state.service.impl; |
18 | |
|
19 | |
|
20 | |
import org.kuali.student.r2.core.state.dto.LifecycleInfo; |
21 | |
import org.kuali.student.r2.core.state.dto.StateInfo; |
22 | |
|
23 | |
import org.kuali.student.r2.common.dto.ContextInfo; |
24 | |
import org.kuali.student.r2.common.dto.RichTextInfo; |
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
public class StateServiceMockDataImpl |
33 | |
extends StateServiceMockImpl { |
34 | |
|
35 | |
public StateServiceMockDataImpl() |
36 | 0 | throws Exception { |
37 | |
|
38 | 0 | addLifecycle("kuali.atp.process", "ATP Lifecycle", "Lifecycle process for Academic Time Periods.", ""); |
39 | 0 | addState("kuali.atp.process", "kuali.atp.state.Draft", "Draft", "Indicates that this ATP is tentative."); |
40 | 0 | addState("kuali.atp.process", "kuali.atp.state.Official", "Official", "Indicates that this ATP has been established."); |
41 | |
|
42 | 0 | addLifecycle("kuali.milestone.process", "Milestone Lifecycle", "Lifecycle process for Milestones.", ""); |
43 | 0 | addState("kuali.milestone.process", "kuali.milestone.state.Draft", "Draft", "Indicates that this Milestone is tentative."); |
44 | 0 | addState("kuali.milestone.process", "kuali.milestone.state.Official", "Official", "Indicates that this Milestone has been established."); |
45 | 0 | } |
46 | |
|
47 | |
protected void addLifecycle(String key, String name, String desc, String ref) |
48 | |
throws Exception { |
49 | |
|
50 | 0 | LifecycleInfo lifecycle = new LifecycleInfo(); |
51 | 0 | lifecycle.setName(name); |
52 | |
|
53 | 0 | RichTextInfo rtDesc = new RichTextInfo(); |
54 | 0 | rtDesc.setPlain(desc); |
55 | 0 | rtDesc.setFormatted(desc); |
56 | 0 | lifecycle.setDescr(rtDesc); |
57 | |
|
58 | 0 | lifecycle.setRefObjectUri(ref); |
59 | |
|
60 | 0 | createLifecycle(key, lifecycle, new ContextInfo()); |
61 | 0 | } |
62 | |
|
63 | |
protected void addState(String lifecycleKey, String key, String name, String desc) |
64 | |
throws Exception { |
65 | |
|
66 | 0 | StateInfo state = new StateInfo(); |
67 | 0 | state.setName(name); |
68 | |
|
69 | 0 | RichTextInfo rtDesc = new RichTextInfo(); |
70 | 0 | rtDesc.setPlain(desc); |
71 | 0 | rtDesc.setFormatted(desc); |
72 | 0 | state.setDescr(rtDesc); |
73 | |
|
74 | 0 | createState(lifecycleKey, key, state, new ContextInfo()); |
75 | 0 | } |
76 | |
} |