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.Sequence;
7 import org.smartcomps.twister.engine.priv.core.definition.StructuredActivity;
8
9 /*
10 <sequence standard-attributes>
11 standard-elements
12 activity+
13 </sequence>
14 */
15 public class SequenceDeployer extends ActivityDeployer {
16 protected void processSpecificElements(Element element, Activity activity) throws DeploymentException {
17 // No Specific Elements
18 // activities are procced in the AbstractDeployer
19 }
20
21 protected void processSpecificAttributes(Element element, Activity activity) throws DeploymentException {
22 // No Specific Attributes
23 }
24
25 protected Class getActivityClass() {
26 return Sequence.class;
27 }
28
29 }
This page was automatically generated by Maven