1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.export; |
17 | |
|
18 | |
import java.io.IOException; |
19 | |
import java.io.OutputStream; |
20 | |
import java.util.ArrayList; |
21 | |
import java.util.List; |
22 | |
|
23 | |
import org.kuali.rice.core.api.impex.ExportDataSet; |
24 | |
import org.kuali.rice.core.api.services.CoreApiServiceLocator; |
25 | |
import org.kuali.rice.edl.impl.bo.EDocLiteAssociation; |
26 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
27 | |
import org.kuali.rice.kew.help.HelpEntry; |
28 | |
import org.kuali.rice.kew.rule.RuleBaseValues; |
29 | |
import org.kuali.rice.kew.rule.RuleDelegation; |
30 | |
import org.kuali.rice.kew.rule.bo.RuleAttribute; |
31 | |
import org.kuali.rice.kew.rule.bo.RuleTemplate; |
32 | |
import org.kuali.rice.kim.bo.impl.GroupImpl; |
33 | |
import org.kuali.rice.kns.bo.BusinessObject; |
34 | |
import org.kuali.rice.kns.bo.Exporter; |
35 | |
import org.kuali.rice.kns.exception.ExportNotSupportedException; |
36 | |
import org.kuali.rice.kns.util.KNSConstants; |
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | |
public class DataExporter implements Exporter { |
48 | |
|
49 | 0 | private List<String> supportedFormats = new ArrayList<String>(); |
50 | |
|
51 | 0 | public DataExporter() { |
52 | 0 | supportedFormats.add(KNSConstants.XML_FORMAT); |
53 | 0 | } |
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
public void export(Class<? extends BusinessObject> businessObjectClass, List<BusinessObject> businessObjects, String exportFormat, OutputStream outputStream) throws IOException { |
59 | 0 | if (!KNSConstants.XML_FORMAT.equals(exportFormat)) { |
60 | 0 | throw new ExportNotSupportedException("The given export format of " + exportFormat + " is not supported by the KEW XML Exporter!"); |
61 | |
} |
62 | 0 | ExportDataSet dataSet = buildExportDataSet(businessObjectClass, businessObjects); |
63 | 0 | outputStream.write(CoreApiServiceLocator.getXmlExporterService().export(dataSet)); |
64 | 0 | outputStream.flush(); |
65 | 0 | } |
66 | |
|
67 | |
public List<String> getSupportedFormats(Class<? extends BusinessObject> businessObjectClass) { |
68 | 0 | return supportedFormats; |
69 | |
} |
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
protected ExportDataSet buildExportDataSet(Class<? extends BusinessObject> businessObjectClass, List<BusinessObject> businessObjects) { |
75 | 0 | KewExportDataSet dataSet = new KewExportDataSet(); |
76 | 0 | for (BusinessObject businessObject : businessObjects) { |
77 | 0 | if (businessObjectClass.equals(RuleAttribute.class)) { |
78 | 0 | dataSet.getRuleAttributes().add((RuleAttribute)businessObject); |
79 | 0 | } else if (businessObjectClass.equals(RuleTemplate.class)) { |
80 | 0 | dataSet.getRuleTemplates().add((RuleTemplate)businessObject); |
81 | 0 | } else if (businessObjectClass.equals(DocumentType.class)) { |
82 | 0 | dataSet.getDocumentTypes().add((DocumentType)businessObject); |
83 | 0 | } else if (businessObjectClass.equals(EDocLiteAssociation.class)) { |
84 | 0 | dataSet.getEdocLites().add((EDocLiteAssociation)businessObject); |
85 | 0 | } else if (businessObjectClass.equals(HelpEntry.class)) { |
86 | 0 | dataSet.getHelp().add((HelpEntry)businessObject); |
87 | 0 | } else if (businessObjectClass.equals(RuleBaseValues.class)) { |
88 | 0 | dataSet.getRules().add((RuleBaseValues)businessObject); |
89 | 0 | } else if (businessObjectClass.equals(RuleDelegation.class)) { |
90 | 0 | dataSet.getRuleDelegations().add((RuleDelegation)businessObject); |
91 | 0 | } else if (businessObjectClass.equals(GroupImpl.class)) { |
92 | 0 | dataSet.getGroups().add((GroupImpl)businessObject); |
93 | |
} |
94 | |
} |
95 | 0 | ExportDataSet exportDataSet = new ExportDataSet(); |
96 | 0 | dataSet.populateExportDataSet(exportDataSet); |
97 | 0 | return exportDataSet; |
98 | |
} |
99 | |
|
100 | |
} |