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