1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.student.kew.xml; |
17 |
|
|
18 |
|
import java.io.InputStream; |
19 |
|
|
20 |
|
import org.kuali.rice.core.exception.RiceRuntimeException; |
21 |
|
import org.kuali.rice.kew.xml.UserXmlServiceImpl; |
22 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.5 |
|
23 |
|
public class KSUserXmlServiceImpl extends UserXmlServiceImpl { |
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 0.5 |
|
24 |
0
|
@Override... |
25 |
|
public void loadXml(InputStream inputStream, String principalId) { |
26 |
0
|
KSUserXmlParser parser = new KSUserXmlParser(); |
27 |
0
|
try { |
28 |
0
|
parser.parseUsers(inputStream); |
29 |
|
} catch (Exception e) { |
30 |
0
|
throw new RiceRuntimeException("Error loading xml file", e); |
31 |
|
} |
32 |
|
} |
33 |
|
} |