1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.edl.impl.components; |
18 | |
|
19 | |
import org.kuali.rice.edl.impl.EDLXmlUtils; |
20 | |
import org.kuali.rice.edl.impl.RequestParser; |
21 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
22 | |
import org.kuali.rice.kew.util.Utilities; |
23 | |
import org.kuali.rice.kew.workgroup.GroupId; |
24 | |
import org.kuali.rice.kew.workgroup.GroupNameId; |
25 | |
import org.kuali.rice.kim.bo.Group; |
26 | |
import org.w3c.dom.Element; |
27 | |
import org.w3c.dom.NodeList; |
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | 0 | public class WorkgroupWorkflowEDLConfigComponent extends SimpleWorkflowEDLConfigComponent { |
35 | |
|
36 | 0 | private boolean required = false; |
37 | |
|
38 | |
protected GroupId resolveId(String id) { |
39 | 0 | String groupName = Utilities.parseGroupName(id); |
40 | 0 | String namespace = Utilities.parseGroupNamespaceCode(id); |
41 | 0 | return new GroupNameId(namespace, groupName); |
42 | |
} |
43 | |
|
44 | |
@Override |
45 | |
public Element getReplacementConfigElement(Element element) { |
46 | 0 | Element replacementEl = (Element)element.cloneNode(true); |
47 | 0 | Element type = (Element)((NodeList)replacementEl.getElementsByTagName(EDLXmlUtils.TYPE_E)).item(0); |
48 | 0 | type.setTextContent("text"); |
49 | |
|
50 | |
|
51 | |
|
52 | 0 | Element validation = (Element)((NodeList)replacementEl.getElementsByTagName(EDLXmlUtils.VALIDATION_E)).item(0); |
53 | 0 | if (validation != null && validation.getAttribute("required").equals("true")) { |
54 | 0 | required = true; |
55 | |
} |
56 | 0 | return replacementEl; |
57 | |
} |
58 | |
|
59 | |
@Override |
60 | |
public String getErrorMessage(Element originalConfigElement, RequestParser requestParser, MatchingParam param) { |
61 | |
|
62 | 0 | if (param.getParamValue().length() == 0 && required == true) { |
63 | |
|
64 | 0 | return ("Workgroup is a required field"); |
65 | 0 | } else if (param.getParamValue().length() == 0 && required == false) { |
66 | |
|
67 | 0 | return null; |
68 | |
} |
69 | 0 | String wrkgrpName = param.getParamValue(); |
70 | |
|
71 | 0 | Group group = KEWServiceLocator.getIdentityHelperService().getGroup(resolveId(wrkgrpName)); |
72 | 0 | if (group == null) { |
73 | 0 | return ("Group " + wrkgrpName + " not found."); |
74 | |
} |
75 | 0 | if (!group.isActive()) { |
76 | 0 | return ("Group " + wrkgrpName + " is not an active group."); |
77 | |
} |
78 | 0 | return null; |
79 | |
} |
80 | |
|
81 | |
public boolean isRequired() { |
82 | 0 | return required; |
83 | |
} |
84 | |
|
85 | |
public void setRequired(boolean required) { |
86 | 0 | this.required = required; |
87 | 0 | } |
88 | |
|
89 | |
} |