Coverage Report - org.kuali.rice.kew.xml.export.RuleAttributeXmlExporter
 
Classes in this File Line Coverage Branch Coverage Complexity
RuleAttributeXmlExporter
0%
0/30
0%
0/6
3
 
 1  
 /*
 2  
  * Copyright 2005-2008 The Kuali Foundation
 3  
  * 
 4  
  * 
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  * 
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  * 
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.kew.xml.export;
 18  
 
 19  
 import org.jdom.Document;
 20  
 import org.jdom.Element;
 21  
 import org.jdom.input.SAXBuilder;
 22  
 import org.kuali.rice.core.api.impex.ExportDataSet;
 23  
 import org.kuali.rice.core.api.util.xml.XmlHelper;
 24  
 import org.kuali.rice.core.api.util.xml.XmlRenderer;
 25  
 import org.kuali.rice.core.framework.impex.xml.XmlExporter;
 26  
 import org.kuali.rice.kew.api.WorkflowRuntimeException;
 27  
 import org.kuali.rice.kew.export.KewExportDataSet;
 28  
 import org.kuali.rice.kew.rule.bo.RuleAttribute;
 29  
 
 30  
 import java.io.StringReader;
 31  
 import java.util.Iterator;
 32  
 
 33  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.*;
 34  
 
 35  
 /**
 36  
  * Exports {@link RuleAttribute}s to XML.
 37  
  * 
 38  
  * @see RuleAttribute
 39  
  *
 40  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 41  
  */
 42  0
 public class RuleAttributeXmlExporter implements XmlExporter {
 43  
 
 44  0
     protected final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(getClass());
 45  
     
 46  0
     private XmlRenderer renderer = new XmlRenderer(RULE_ATTRIBUTE_NAMESPACE);
 47  
     
 48  
         @Override
 49  
         public boolean supportPrettyPrint() {
 50  0
                 return true;
 51  
         }
 52  
 
 53  
     public Element export(ExportDataSet exportDataSet) {
 54  0
             KewExportDataSet dataSet = KewExportDataSet.fromExportDataSet(exportDataSet);
 55  0
         if (!dataSet.getRuleAttributes().isEmpty()) {
 56  0
             Element rootElement = renderer.renderElement(null, RULE_ATTRIBUTES);
 57  0
             rootElement.setAttribute(SCHEMA_LOCATION_ATTR, RULE_ATTRIBUTE_SCHEMA_LOCATION, SCHEMA_NAMESPACE);
 58  0
             for (Iterator iterator = dataSet.getRuleAttributes().iterator(); iterator.hasNext();) {
 59  0
                 RuleAttribute template = (RuleAttribute)iterator.next();
 60  0
                 exportRuleAttribute(rootElement, template);
 61  0
             }
 62  0
             return rootElement;
 63  
         }
 64  0
         return null;
 65  
     }
 66  
     
 67  
     private void exportRuleAttribute(Element parent, RuleAttribute ruleAttribute) {
 68  0
         Element attributeElement = renderer.renderElement(parent, RULE_ATTRIBUTE);
 69  0
         renderer.renderTextElement(attributeElement, NAME, ruleAttribute.getName());
 70  0
         renderer.renderTextElement(attributeElement, CLASS_NAME, ruleAttribute.getClassName());
 71  0
         renderer.renderTextElement(attributeElement, LABEL, ruleAttribute.getLabel());
 72  0
         renderer.renderTextElement(attributeElement, DESCRIPTION, ruleAttribute.getDescription());
 73  0
         renderer.renderTextElement(attributeElement, TYPE, ruleAttribute.getType());
 74  0
         renderer.renderTextElement(attributeElement, APPLICATION_ID, ruleAttribute.getApplicationId());
 75  0
         if (!org.apache.commons.lang.StringUtils.isEmpty(ruleAttribute.getXmlConfigData())) {
 76  
             try {
 77  0
                 Document configDoc = new SAXBuilder().build(new StringReader(ruleAttribute.getXmlConfigData()));
 78  0
                 XmlHelper.propagateNamespace(configDoc.getRootElement(), RULE_ATTRIBUTE_NAMESPACE);
 79  0
                 attributeElement.addContent(configDoc.getRootElement().detach());
 80  0
             } catch (Exception e) {
 81  0
                     LOG.error("Error parsing attribute XML configuration.", e);
 82  0
                 throw new WorkflowRuntimeException("Error parsing attribute XML configuration.");
 83  0
             }
 84  
         }
 85  0
     }
 86  
     
 87  
 }