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.Scope;
7
8 /*
9 <scope variableAccessSerializable="yes|no" standard-attributes>
10 standard-elements
11 <variables>?
12 ... see above under <process> for syntax ...
13 </variables>
14 <correlationSets>?
15 ... see above under <process> for syntax ...
16 </correlationSets>
17 <faultHandlers>?
18 ... see above under <process> for syntax ...
19 </faultHandlers>
20 <compensationHandler>?
21 ... see above under <process> for syntax ...
22 </compensationHandler>
23 <eventHandlers>?
24 ...
25 </eventHandlers>
26 activity
27 </scope>
28 */
29 // TODO implements Scope Activity
30 public class ScopeDeployer extends ActivityDeployer {
31
32 protected void processSpecificElements(Element element, Activity activity) throws DeploymentException {
33 log.info("Not Yet Implemented");
34 }
35
36 protected void processSpecificAttributes(Element element, Activity activity) throws DeploymentException {
37 log.info("Not Yet Implemented");
38 }
39
40 protected Class getActivityClass() {
41 return Scope.class;
42 }
43 }
This page was automatically generated by Maven