Java tutorial
/* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.flowable.cmmn.converter.export; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamWriter; import org.apache.commons.lang3.StringUtils; import org.flowable.cmmn.converter.CmmnXmlConstants; import org.flowable.cmmn.model.CompletionNeutralRule; import org.flowable.cmmn.model.ManualActivationRule; import org.flowable.cmmn.model.PlanItemControl; import org.flowable.cmmn.model.RepetitionRule; import org.flowable.cmmn.model.RequiredRule; /** * @author Tijs Rademakers * @author Joram Barrez */ public class PlanItemControlExport implements CmmnXmlConstants { public static void writeItemControl(PlanItemControl planItemControl, XMLStreamWriter xtw) throws Exception { xtw.writeStartElement(ELEMENT_ITEM_CONTROL); writeItemControlContent(planItemControl, xtw); xtw.writeEndElement(); } public static void writeDefaultControl(PlanItemControl planItemControl, XMLStreamWriter xtw) throws Exception { xtw.writeStartElement(ELEMENT_DEFAULT_CONTROL); writeItemControlContent(planItemControl, xtw); xtw.writeEndElement(); } protected static void writeItemControlContent(PlanItemControl planItemControl, XMLStreamWriter xtw) throws Exception { writeCompletionNeutralRule(planItemControl.getCompletionNeutralRule(), xtw); writeRepetitionRule(planItemControl.getRepetitionRule(), xtw); writeRequiredRule(planItemControl.getRequiredRule(), xtw); writeManualActivationRule(planItemControl.getManualActivationRule(), xtw); } public static void writeRequiredRule(RequiredRule requiredRule, XMLStreamWriter xtw) throws XMLStreamException { if (requiredRule != null) { xtw.writeStartElement(ELEMENT_REQUIRED_RULE); if (StringUtils.isNotEmpty(requiredRule.getCondition())) { xtw.writeStartElement(ELEMENT_CONDITION); xtw.writeCData(requiredRule.getCondition()); xtw.writeEndElement(); } xtw.writeEndElement(); } } public static void writeRepetitionRule(RepetitionRule repetitionRule, XMLStreamWriter xtw) throws XMLStreamException { if (repetitionRule != null) { xtw.writeStartElement(ELEMENT_REPETITION_RULE); if (StringUtils.isNotEmpty(repetitionRule.getRepetitionCounterVariableName())) { xtw.writeAttribute(FLOWABLE_EXTENSIONS_PREFIX, FLOWABLE_EXTENSIONS_NAMESPACE, ATTRIBUTE_REPETITION_COUNTER_VARIABLE_NAME, repetitionRule.getRepetitionCounterVariableName()); } if (StringUtils.isNotEmpty(repetitionRule.getCondition())) { xtw.writeStartElement(ELEMENT_CONDITION); xtw.writeCData(repetitionRule.getCondition()); xtw.writeEndElement(); } xtw.writeEndElement(); } } public static void writeManualActivationRule(ManualActivationRule manualActivationRule, XMLStreamWriter xtw) throws XMLStreamException { if (manualActivationRule != null) { xtw.writeStartElement(ELEMENT_MANUAL_ACTIVATION_RULE); if (StringUtils.isNotEmpty(manualActivationRule.getCondition())) { xtw.writeStartElement(ELEMENT_CONDITION); xtw.writeCData(manualActivationRule.getCondition()); xtw.writeEndElement(); } xtw.writeEndElement(); } } public static void writeCompletionNeutralRule(CompletionNeutralRule completionNeutralRule, XMLStreamWriter xtw) throws XMLStreamException { if (completionNeutralRule != null) { xtw.writeStartElement(ELEMENT_EXTENSION_ELEMENTS); xtw.writeStartElement(FLOWABLE_EXTENSIONS_PREFIX, ELEMENT_COMPLETION_NEUTRAL_RULE, FLOWABLE_EXTENSIONS_NAMESPACE); if (StringUtils.isNotBlank(completionNeutralRule.getCondition())) { xtw.writeStartElement(ELEMENT_CONDITION); xtw.writeCData(completionNeutralRule.getCondition()); xtw.writeEndElement(); } xtw.writeEndElement(); xtw.writeEndElement(); } } }