1 package org.smartcomps.twister.deployer.priv;
2
3 import org.dom4j.Element;
4 import org.smartcomps.twister.deployer.exception.DeploymentException;
5 import org.smartcomps.twister.engine.priv.core.definition.Activity;
6 import org.smartcomps.twister.engine.priv.core.definition.Flow;
7
8 /*
9 <flow standard-attributes>
10 standard-elements
11 activity+
12 </flow>
13 */
14 public class FlowDeployer extends ActivityDeployer {
15 protected void processSpecificElements(Element element, Activity activity) throws DeploymentException {
16 // No Specific Elements
17 // activities are procced in the AbstractDeployer
18 }
19
20 protected void processSpecificAttributes(Element element, Activity activity) throws DeploymentException {
21 // No Specific Attributes
22 }
23
24 protected Class getActivityClass() {
25 return Flow.class;
26 }
27
28 }
This page was automatically generated by Maven