diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2014-04-11 17:00:47 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2014-04-11 17:03:57 +0200 |
| commit | 410dc5af0fec0e29635cc049351076712f2d4727 (patch) | |
| tree | 900033039ddce3ec3fd285bf9664a436fcc9b9fb | |
| parent | 3ee9c263ca512068d2669cdf9a10679424eb6ce2 (diff) | |
Remove description editing workflows from the kernel - they have been
moved to cristal-dev. Requires future post-processing for previous
Module.debug functionality
| -rw-r--r-- | src/main/java/com/c2kernel/process/Bootstrap.java | 11 | ||||
| -rw-r--r-- | src/main/java/com/c2kernel/process/module/Module.java | 2 | ||||
| -rw-r--r-- | src/main/resources/boot/CA/ManageCompositeActDef.xml | 208 | ||||
| -rw-r--r-- | src/main/resources/boot/CA/ManageElementaryActDef.xml | 212 | ||||
| -rw-r--r-- | src/main/resources/boot/CA/ManageSchema.xml | 216 | ||||
| -rw-r--r-- | src/main/resources/boot/CA/ManageScript.xml | 217 | ||||
| -rw-r--r-- | src/main/resources/boot/CA/ManageStateMachine.xml | 214 | ||||
| -rw-r--r-- | src/main/resources/boot/CA/ModuleWorkflow.xml | 100 | ||||
| -rw-r--r-- | src/main/resources/boot/EA/AssignNewVersionFromLast.xml | 20 | ||||
| -rw-r--r-- | src/main/resources/boot/EA/EditActivityDef.xml | 19 | ||||
| -rw-r--r-- | src/main/resources/boot/EA/EditModuleDefinition.xml | 1 | ||||
| -rw-r--r-- | src/main/resources/boot/EA/EditSchema.xml | 19 | ||||
| -rw-r--r-- | src/main/resources/boot/EA/EditScriptDefinition.xml | 19 | ||||
| -rw-r--r-- | src/main/resources/boot/EA/EditStateMachine.xml | 19 | ||||
| -rw-r--r-- | src/main/resources/boot/SC/CreateNewNumberedVersionFromLast.xml | 31 | ||||
| -rw-r--r-- | src/main/resources/boot/allbootitems.txt | 13 |
16 files changed, 8 insertions, 1313 deletions
diff --git a/src/main/java/com/c2kernel/process/Bootstrap.java b/src/main/java/com/c2kernel/process/Bootstrap.java index a750b3f..601db31 100644 --- a/src/main/java/com/c2kernel/process/Bootstrap.java +++ b/src/main/java/com/c2kernel/process/Bootstrap.java @@ -238,11 +238,14 @@ public class Bootstrap props.list.add(new Property(propName, propVal, pd.getIsMutable()));
}
- CompositeActivity ca;
+ CompositeActivity ca = new CompositeActivity();
if (ns!=null && Gateway.getProperties().getBoolean("Module.debug", false))
- ca = (CompositeActivity) ((CompositeActivityDef)LocalObjectLoader.getActDef(impHandler.getWorkflowName(), 0)).instantiate();
- else
- ca = new CompositeActivity();
+ try {
+ ca = (CompositeActivity) ((CompositeActivityDef)LocalObjectLoader.getActDef(impHandler.getWorkflowName(), 0)).instantiate();
+ } catch (ObjectNotFoundException ex) {
+ Logger.error("Module resource workflow "+impHandler.getWorkflowName()+" not found. Using empty.");
+ }
+
EntityPath entityPath = Gateway.getLDAPLookup().getNextKeyManager().generateNextEntityKey();
TraceableEntity newItem = (TraceableEntity)Gateway.getCorbaServer().createEntity(entityPath);
diff --git a/src/main/java/com/c2kernel/process/module/Module.java b/src/main/java/com/c2kernel/process/module/Module.java index 3e8ab2a..32a5997 100644 --- a/src/main/java/com/c2kernel/process/module/Module.java +++ b/src/main/java/com/c2kernel/process/module/Module.java @@ -51,7 +51,7 @@ public class Module { }
public void addModuleItem(String moduleXML) {
- NewItem moduleItem = new NewItem(name, "/desc/modules/", "ModuleWorkflow", 0);
+ NewItem moduleItem = new NewItem(name, "/desc/modules/", "NoWorkflow", 0);
// Module properties
moduleItem.properties.add(new com.c2kernel.property.Property("Namespace", ns, false));
moduleItem.properties.add(new com.c2kernel.property.Property("Name", name, false));
diff --git a/src/main/resources/boot/CA/ManageCompositeActDef.xml b/src/main/resources/boot/CA/ManageCompositeActDef.xml deleted file mode 100644 index f1def44..0000000 --- a/src/main/resources/boot/CA/ManageCompositeActDef.xml +++ /dev/null @@ -1,208 +0,0 @@ -<CompositeActivityDef ID="-1" Name="ManageCompositeActDef" Height="0" Width="0" IsLayoutable="false" IsComposite="true">
- <childrenGraphModel>
- <GraphModelCastorData StartVertexId="13" NextId="26">
- <LoopDef ID="15" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="358" y="360"/>
- <OutlinePoint x="328" y="348"/>
- <OutlinePoint x="388" y="348"/>
- <OutlinePoint x="388" y="372"/>
- <OutlinePoint x="328" y="372"/>
- <InEdgeId>19</InEdgeId>
- <OutEdgeId>20</OutEdgeId>
- <OutEdgeId>21</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <JoinDef ID="14" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="357" y="132"/>
- <OutlinePoint x="327" y="120"/>
- <OutlinePoint x="387" y="120"/>
- <OutlinePoint x="387" y="144"/>
- <OutlinePoint x="327" y="144"/>
- <InEdgeId>17</InEdgeId>
- <InEdgeId>20</InEdgeId>
- <OutEdgeId>18</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <AndSplitDef ID="13" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="274" y="39"/>
- <OutlinePoint x="244" y="27"/>
- <OutlinePoint x="304" y="27"/>
- <OutlinePoint x="304" y="51"/>
- <OutlinePoint x="244" y="51"/>
- <OutEdgeId>16</OutEdgeId>
- <OutEdgeId>17</OutEdgeId>
- <Properties/>
- </AndSplitDef>
- <JoinDef ID="4" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="265" y="473"/>
- <OutlinePoint x="235" y="461"/>
- <OutlinePoint x="295" y="461"/>
- <OutlinePoint x="295" y="485"/>
- <OutlinePoint x="235" y="485"/>
- <InEdgeId>8</InEdgeId>
- <InEdgeId>21</InEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <LoopDef ID="3" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="177" y="359"/>
- <OutlinePoint x="147" y="347"/>
- <OutlinePoint x="207" y="347"/>
- <OutlinePoint x="207" y="371"/>
- <OutlinePoint x="147" y="371"/>
- <InEdgeId>25</InEdgeId>
- <OutEdgeId>7</OutEdgeId>
- <OutEdgeId>8</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <ActivitySlotDef ID="11" Name="AssignNewVersionFromLast_" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="270" y="251"/>
- <OutlinePoint x="205" y="221"/>
- <OutlinePoint x="335" y="221"/>
- <OutlinePoint x="335" y="281"/>
- <OutlinePoint x="205" y="281"/>
- <InEdgeId>18</InEdgeId>
- <OutEdgeId>19</OutEdgeId>
- <Properties>
- <KeyValuePair Key="ViewName" String="CompositeActivityDef"/>
- <KeyValuePair Key="Name" String="AssignNewActivityVersionFromLast"/>
- </Properties>
- <activityDef>AssignNewVersionFromLast</activityDef>
- </ActivitySlotDef>
- <JoinDef ID="2" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="175" y="131"/>
- <OutlinePoint x="145" y="119"/>
- <OutlinePoint x="205" y="119"/>
- <OutlinePoint x="205" y="143"/>
- <OutlinePoint x="145" y="143"/>
- <InEdgeId>7</InEdgeId>
- <InEdgeId>16</InEdgeId>
- <OutEdgeId>24</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <ActivitySlotDef ID="22" Name="EditDefinition" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="76" y="251"/>
- <OutlinePoint x="11" y="221"/>
- <OutlinePoint x="141" y="221"/>
- <OutlinePoint x="141" y="281"/>
- <OutlinePoint x="11" y="281"/>
- <InEdgeId>24</InEdgeId>
- <OutEdgeId>25</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Name" String="EditDefinition"/>
- <KeyValuePair Key="SchemaType" String="CompositeActivityDef"/>
- </Properties>
- <activityDef>EditActivityDef</activityDef>
- </ActivitySlotDef>
- <NextDef ID="25" OriginVertexId="22" TerminusVertexId="3">
- <OriginPoint x="76" y="251"/>
- <TerminusPoint x="177" y="359"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="24" OriginVertexId="2" TerminusVertexId="22">
- <OriginPoint x="175" y="131"/>
- <TerminusPoint x="76" y="251"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="19" OriginVertexId="11" TerminusVertexId="15">
- <OriginPoint x="270" y="251"/>
- <TerminusPoint x="358" y="360"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="21" OriginVertexId="15" TerminusVertexId="4">
- <OriginPoint x="358" y="360"/>
- <TerminusPoint x="265" y="473"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="18" OriginVertexId="14" TerminusVertexId="11">
- <OriginPoint x="357" y="132"/>
- <TerminusPoint x="270" y="251"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="20" OriginVertexId="15" TerminusVertexId="14">
- <OriginPoint x="358" y="360"/>
- <TerminusPoint x="357" y="132"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="8" OriginVertexId="3" TerminusVertexId="4">
- <OriginPoint x="177" y="359"/>
- <TerminusPoint x="265" y="473"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="17" OriginVertexId="13" TerminusVertexId="14">
- <OriginPoint x="274" y="39"/>
- <TerminusPoint x="357" y="132"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="16" OriginVertexId="13" TerminusVertexId="2">
- <OriginPoint x="274" y="39"/>
- <TerminusPoint x="175" y="131"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="7" OriginVertexId="3" TerminusVertexId="2">
- <OriginPoint x="177" y="359"/>
- <TerminusPoint x="175" y="131"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- </GraphModelCastorData>
- </childrenGraphModel>
- <Properties>
- <KeyValuePair Key="Expected Time" Integer="0"/>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Has Timeout" Boolean="false"/>
- <KeyValuePair Key="Time Out Action" Integer="2"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Expected Time Unit" Integer="3"/>
- <KeyValuePair Key="Maximum Time" Integer="0"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Maximum Time Unit" Integer="3"/>
- <KeyValuePair Key="Description" String=""/>
- <KeyValuePair Key="SchemaVersion" String=""/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Viewpoint" String=""/>
- <KeyValuePair Key="Agent Role" String=""/>
- <KeyValuePair Key="Timeout Activated" Boolean="false"/>
- <KeyValuePair Key="SchemaType" String=""/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- </Properties>
-</CompositeActivityDef>
diff --git a/src/main/resources/boot/CA/ManageElementaryActDef.xml b/src/main/resources/boot/CA/ManageElementaryActDef.xml deleted file mode 100644 index 756fb8a..0000000 --- a/src/main/resources/boot/CA/ManageElementaryActDef.xml +++ /dev/null @@ -1,212 +0,0 @@ -<CompositeActivityDef ID="-1" Name="ManageElementaryActDef" Height="0" Width="0" IsLayoutable="false" IsComposite="true">
- <childrenGraphModel>
- <GraphModelCastorData StartVertexId="13" NextId="26">
- <LoopDef ID="15" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="358" y="360"/>
- <OutlinePoint x="328" y="348"/>
- <OutlinePoint x="388" y="348"/>
- <OutlinePoint x="388" y="372"/>
- <OutlinePoint x="328" y="372"/>
- <InEdgeId>19</InEdgeId>
- <OutEdgeId>20</OutEdgeId>
- <OutEdgeId>21</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <JoinDef ID="14" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="357" y="132"/>
- <OutlinePoint x="327" y="120"/>
- <OutlinePoint x="387" y="120"/>
- <OutlinePoint x="387" y="144"/>
- <OutlinePoint x="327" y="144"/>
- <InEdgeId>17</InEdgeId>
- <InEdgeId>20</InEdgeId>
- <OutEdgeId>18</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <JoinDef ID="4" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="265" y="473"/>
- <OutlinePoint x="235" y="461"/>
- <OutlinePoint x="295" y="461"/>
- <OutlinePoint x="295" y="485"/>
- <OutlinePoint x="235" y="485"/>
- <InEdgeId>8</InEdgeId>
- <InEdgeId>21</InEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <AndSplitDef ID="13" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="274" y="39"/>
- <OutlinePoint x="244" y="27"/>
- <OutlinePoint x="304" y="27"/>
- <OutlinePoint x="304" y="51"/>
- <OutlinePoint x="244" y="51"/>
- <OutEdgeId>16</OutEdgeId>
- <OutEdgeId>17</OutEdgeId>
- <Properties/>
- </AndSplitDef>
- <LoopDef ID="3" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="177" y="359"/>
- <OutlinePoint x="147" y="347"/>
- <OutlinePoint x="207" y="347"/>
- <OutlinePoint x="207" y="371"/>
- <OutlinePoint x="147" y="371"/>
- <InEdgeId>25</InEdgeId>
- <OutEdgeId>7</OutEdgeId>
- <OutEdgeId>8</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <JoinDef ID="2" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="175" y="131"/>
- <OutlinePoint x="145" y="119"/>
- <OutlinePoint x="205" y="119"/>
- <OutlinePoint x="205" y="143"/>
- <OutlinePoint x="145" y="143"/>
- <InEdgeId>7</InEdgeId>
- <InEdgeId>16</InEdgeId>
- <OutEdgeId>24</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <ActivitySlotDef ID="11" Name="AssignNewVersionFromLast_" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="270" y="251"/>
- <OutlinePoint x="205" y="221"/>
- <OutlinePoint x="335" y="221"/>
- <OutlinePoint x="335" y="281"/>
- <OutlinePoint x="205" y="281"/>
- <InEdgeId>18</InEdgeId>
- <OutEdgeId>19</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Prefill" Boolean="false"/>
- <KeyValuePair Key="Prefill Version" String="-1"/>
- <KeyValuePair Key="ViewName" String="ElementaryActivityDef"/>
- <KeyValuePair Key="Name" String="AssignNewActivityVersionFromLast"/>
- </Properties>
- <activityDef>AssignNewVersionFromLast</activityDef>
- </ActivitySlotDef>
- <ActivitySlotDef ID="22" Name="EditDefinition" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="76" y="251"/>
- <OutlinePoint x="11" y="221"/>
- <OutlinePoint x="141" y="221"/>
- <OutlinePoint x="141" y="281"/>
- <OutlinePoint x="11" y="281"/>
- <InEdgeId>24</InEdgeId>
- <OutEdgeId>25</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Prefill" Boolean="false"/>
- <KeyValuePair Key="Prefill Version" String="-1"/>
- <KeyValuePair Key="Name" String="EditDefinition"/>
- <KeyValuePair Key="SchemaType" String="ElementaryActivityDef"/>
- </Properties>
- <activityDef>EditActivityDef</activityDef>
- </ActivitySlotDef>
- <NextDef ID="25" OriginVertexId="22" TerminusVertexId="3">
- <OriginPoint x="76" y="251"/>
- <TerminusPoint x="177" y="359"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="24" OriginVertexId="2" TerminusVertexId="22">
- <OriginPoint x="175" y="131"/>
- <TerminusPoint x="76" y="251"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="19" OriginVertexId="11" TerminusVertexId="15">
- <OriginPoint x="270" y="251"/>
- <TerminusPoint x="358" y="360"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="21" OriginVertexId="15" TerminusVertexId="4">
- <OriginPoint x="358" y="360"/>
- <TerminusPoint x="265" y="473"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="18" OriginVertexId="14" TerminusVertexId="11">
- <OriginPoint x="357" y="132"/>
- <TerminusPoint x="270" y="251"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="20" OriginVertexId="15" TerminusVertexId="14">
- <OriginPoint x="358" y="360"/>
- <TerminusPoint x="357" y="132"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="8" OriginVertexId="3" TerminusVertexId="4">
- <OriginPoint x="177" y="359"/>
- <TerminusPoint x="265" y="473"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="17" OriginVertexId="13" TerminusVertexId="14">
- <OriginPoint x="274" y="39"/>
- <TerminusPoint x="357" y="132"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="7" OriginVertexId="3" TerminusVertexId="2">
- <OriginPoint x="177" y="359"/>
- <TerminusPoint x="175" y="131"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="16" OriginVertexId="13" TerminusVertexId="2">
- <OriginPoint x="274" y="39"/>
- <TerminusPoint x="175" y="131"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- </GraphModelCastorData>
- </childrenGraphModel>
- <Properties>
- <KeyValuePair Key="Expected Time" Integer="0"/>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Has Timeout" Boolean="false"/>
- <KeyValuePair Key="Time Out Action" Integer="2"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Expected Time Unit" Integer="3"/>
- <KeyValuePair Key="Maximum Time" Integer="0"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Maximum Time Unit" Integer="3"/>
- <KeyValuePair Key="Description" String=""/>
- <KeyValuePair Key="SchemaVersion" String=""/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Viewpoint" String=""/>
- <KeyValuePair Key="Agent Role" String=""/>
- <KeyValuePair Key="Timeout Activated" Boolean="false"/>
- <KeyValuePair Key="SchemaType" String=""/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- </Properties>
-</CompositeActivityDef>
diff --git a/src/main/resources/boot/CA/ManageSchema.xml b/src/main/resources/boot/CA/ManageSchema.xml deleted file mode 100644 index 69580fe..0000000 --- a/src/main/resources/boot/CA/ManageSchema.xml +++ /dev/null @@ -1,216 +0,0 @@ -<CompositeActivityDef ID="-1" Name="ManageSchema" Height="0" Width="0" IsLayoutable="false" IsComposite="true">
- <childrenGraphModel>
- <GraphModelCastorData StartVertexId="13" NextId="22">
- <LoopDef ID="15" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="358" y="360"/>
- <OutlinePoint x="328" y="348"/>
- <OutlinePoint x="388" y="348"/>
- <OutlinePoint x="388" y="372"/>
- <OutlinePoint x="328" y="372"/>
- <InEdgeId>19</InEdgeId>
- <OutEdgeId>20</OutEdgeId>
- <OutEdgeId>21</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <JoinDef ID="14" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="357" y="132"/>
- <OutlinePoint x="327" y="120"/>
- <OutlinePoint x="387" y="120"/>
- <OutlinePoint x="387" y="144"/>
- <OutlinePoint x="327" y="144"/>
- <InEdgeId>17</InEdgeId>
- <InEdgeId>20</InEdgeId>
- <OutEdgeId>18</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <AndSplitDef ID="13" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="274" y="39"/>
- <OutlinePoint x="244" y="27"/>
- <OutlinePoint x="304" y="27"/>
- <OutlinePoint x="304" y="51"/>
- <OutlinePoint x="244" y="51"/>
- <OutEdgeId>16</OutEdgeId>
- <OutEdgeId>17</OutEdgeId>
- <Properties>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String=""/>
- </Properties>
- </AndSplitDef>
- <JoinDef ID="4" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="265" y="473"/>
- <OutlinePoint x="235" y="461"/>
- <OutlinePoint x="295" y="461"/>
- <OutlinePoint x="295" y="485"/>
- <OutlinePoint x="235" y="485"/>
- <InEdgeId>8</InEdgeId>
- <InEdgeId>21</InEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <LoopDef ID="3" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="177" y="359"/>
- <OutlinePoint x="147" y="347"/>
- <OutlinePoint x="207" y="347"/>
- <OutlinePoint x="207" y="371"/>
- <OutlinePoint x="147" y="371"/>
- <InEdgeId>6</InEdgeId>
- <OutEdgeId>7</OutEdgeId>
- <OutEdgeId>8</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <ActivitySlotDef ID="11" Name="AssignNewVersionFromLast_" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="270" y="251"/>
- <OutlinePoint x="205" y="221"/>
- <OutlinePoint x="335" y="221"/>
- <OutlinePoint x="335" y="281"/>
- <OutlinePoint x="205" y="281"/>
- <InEdgeId>18</InEdgeId>
- <OutEdgeId>19</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Prefill" Boolean="false"/>
- <KeyValuePair Key="Prefill Version" String="-1"/>
- <KeyValuePair Key="ViewName" String="Schema"/>
- <KeyValuePair Key="Name" String="AssignNewSchemaVersionFromLast"/>
- </Properties>
- <activityDef>AssignNewVersionFromLast</activityDef>
- </ActivitySlotDef>
- <JoinDef ID="2" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="175" y="131"/>
- <OutlinePoint x="145" y="119"/>
- <OutlinePoint x="205" y="119"/>
- <OutlinePoint x="205" y="143"/>
- <OutlinePoint x="145" y="143"/>
- <InEdgeId>7</InEdgeId>
- <InEdgeId>16</InEdgeId>
- <OutEdgeId>5</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <ActivitySlotDef ID="0" Name="EditDefinition" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="93" y="252"/>
- <OutlinePoint x="28" y="222"/>
- <OutlinePoint x="158" y="222"/>
- <OutlinePoint x="158" y="282"/>
- <OutlinePoint x="28" y="282"/>
- <InEdgeId>5</InEdgeId>
- <OutEdgeId>6</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Prefill" Boolean="false"/>
- <KeyValuePair Key="Prefill Version" String="-1"/>
- <KeyValuePair Key="Name" String="EditDefinition"/>
- </Properties>
- <activityDef>EditSchema</activityDef>
- </ActivitySlotDef>
- <NextDef ID="21" OriginVertexId="15" TerminusVertexId="4">
- <OriginPoint x="358" y="360"/>
- <TerminusPoint x="265" y="473"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="19" OriginVertexId="11" TerminusVertexId="15">
- <OriginPoint x="270" y="251"/>
- <TerminusPoint x="358" y="360"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="20" OriginVertexId="15" TerminusVertexId="14">
- <OriginPoint x="358" y="360"/>
- <TerminusPoint x="357" y="132"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="18" OriginVertexId="14" TerminusVertexId="11">
- <OriginPoint x="357" y="132"/>
- <TerminusPoint x="270" y="251"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="8" OriginVertexId="3" TerminusVertexId="4">
- <OriginPoint x="177" y="359"/>
- <TerminusPoint x="265" y="473"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="17" OriginVertexId="13" TerminusVertexId="14">
- <OriginPoint x="274" y="39"/>
- <TerminusPoint x="357" y="132"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="7" OriginVertexId="3" TerminusVertexId="2">
- <OriginPoint x="177" y="359"/>
- <TerminusPoint x="175" y="131"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="16" OriginVertexId="13" TerminusVertexId="2">
- <OriginPoint x="274" y="39"/>
- <TerminusPoint x="175" y="131"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="6" OriginVertexId="0" TerminusVertexId="3">
- <OriginPoint x="93" y="252"/>
- <TerminusPoint x="177" y="359"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="5" OriginVertexId="2" TerminusVertexId="0">
- <OriginPoint x="175" y="131"/>
- <TerminusPoint x="93" y="252"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- </GraphModelCastorData>
- </childrenGraphModel>
- <Properties>
- <KeyValuePair Key="Expected Time" Integer="0"/>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Has Timeout" Boolean="false"/>
- <KeyValuePair Key="Time Out Action" Integer="2"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Expected Time Unit" Integer="3"/>
- <KeyValuePair Key="Maximum Time" Integer="0"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Maximum Time Unit" Integer="3"/>
- <KeyValuePair Key="Description" String=""/>
- <KeyValuePair Key="SchemaVersion" String=""/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Viewpoint" String=""/>
- <KeyValuePair Key="Agent Role" String=""/>
- <KeyValuePair Key="Timeout Activated" Boolean="false"/>
- <KeyValuePair Key="SchemaType" String=""/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- </Properties>
-</CompositeActivityDef>
diff --git a/src/main/resources/boot/CA/ManageScript.xml b/src/main/resources/boot/CA/ManageScript.xml deleted file mode 100644 index 9dff06f..0000000 --- a/src/main/resources/boot/CA/ManageScript.xml +++ /dev/null @@ -1,217 +0,0 @@ -<CompositeActivityDef ID="-1" Name="ManageScript" Height="0" Width="0" IsLayoutable="false" IsComposite="true">
- <childrenGraphModel>
- <GraphModelCastorData StartVertexId="11" NextId="27">
- <LoopDef ID="15" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="425" y="291"/>
- <OutlinePoint x="395" y="279"/>
- <OutlinePoint x="455" y="279"/>
- <OutlinePoint x="455" y="303"/>
- <OutlinePoint x="395" y="303"/>
- <InEdgeId>24</InEdgeId>
- <OutEdgeId>25</OutEdgeId>
- <OutEdgeId>26</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <LoopDef ID="14" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="184" y="289"/>
- <OutlinePoint x="154" y="277"/>
- <OutlinePoint x="214" y="277"/>
- <OutlinePoint x="214" y="301"/>
- <OutlinePoint x="154" y="301"/>
- <InEdgeId>21</InEdgeId>
- <OutEdgeId>22</OutEdgeId>
- <OutEdgeId>23</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <JoinDef ID="13" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="425" y="80"/>
- <OutlinePoint x="395" y="68"/>
- <OutlinePoint x="455" y="68"/>
- <OutlinePoint x="455" y="92"/>
- <OutlinePoint x="395" y="92"/>
- <InEdgeId>18</InEdgeId>
- <InEdgeId>25</InEdgeId>
- <OutEdgeId>20</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <JoinDef ID="12" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="184" y="80"/>
- <OutlinePoint x="154" y="68"/>
- <OutlinePoint x="214" y="68"/>
- <OutlinePoint x="214" y="92"/>
- <OutlinePoint x="154" y="92"/>
- <InEdgeId>17</InEdgeId>
- <InEdgeId>23</InEdgeId>
- <OutEdgeId>19</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <AndSplitDef ID="11" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="305" y="26"/>
- <OutlinePoint x="275" y="14"/>
- <OutlinePoint x="335" y="14"/>
- <OutlinePoint x="335" y="38"/>
- <OutlinePoint x="275" y="38"/>
- <OutEdgeId>17</OutEdgeId>
- <OutEdgeId>18</OutEdgeId>
- <Properties>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String=""/>
- </Properties>
- </AndSplitDef>
- <ActivitySlotDef ID="0" Name="EditDefinition" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="115" y="182"/>
- <OutlinePoint x="50" y="152"/>
- <OutlinePoint x="180" y="152"/>
- <OutlinePoint x="180" y="212"/>
- <OutlinePoint x="50" y="212"/>
- <InEdgeId>19</InEdgeId>
- <OutEdgeId>21</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Prefill" Boolean="false"/>
- <KeyValuePair Key="Prefill Version" String="-1"/>
- <KeyValuePair Key="Name" String="EditDefinition"/>
- </Properties>
- <activityDef>EditScriptDefinition</activityDef>
- </ActivitySlotDef>
- <ActivitySlotDef ID="9" Name="AssignNewVersionFromLast_" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="344" y="184"/>
- <OutlinePoint x="279" y="154"/>
- <OutlinePoint x="409" y="154"/>
- <OutlinePoint x="409" y="214"/>
- <OutlinePoint x="279" y="214"/>
- <InEdgeId>20</InEdgeId>
- <OutEdgeId>24</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Prefill" Boolean="false"/>
- <KeyValuePair Key="Prefill Version" String="-1"/>
- <KeyValuePair Key="ViewName" String="Script"/>
- <KeyValuePair Key="Name" String="AssignNewVersionFromLast"/>
- </Properties>
- <activityDef>AssignNewVersionFromLast</activityDef>
- </ActivitySlotDef>
- <JoinDef ID="16" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="293" y="399"/>
- <OutlinePoint x="263" y="387"/>
- <OutlinePoint x="323" y="387"/>
- <OutlinePoint x="323" y="411"/>
- <OutlinePoint x="263" y="411"/>
- <InEdgeId>22</InEdgeId>
- <InEdgeId>26</InEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <NextDef ID="26" OriginVertexId="15" TerminusVertexId="16">
- <OriginPoint x="425" y="291"/>
- <TerminusPoint x="293" y="399"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="25" OriginVertexId="15" TerminusVertexId="13">
- <OriginPoint x="425" y="291"/>
- <TerminusPoint x="425" y="80"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="24" OriginVertexId="9" TerminusVertexId="15">
- <OriginPoint x="344" y="184"/>
- <TerminusPoint x="425" y="291"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="23" OriginVertexId="14" TerminusVertexId="12">
- <OriginPoint x="184" y="289"/>
- <TerminusPoint x="184" y="80"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="22" OriginVertexId="14" TerminusVertexId="16">
- <OriginPoint x="184" y="289"/>
- <TerminusPoint x="293" y="399"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="19" OriginVertexId="12" TerminusVertexId="0">
- <OriginPoint x="184" y="80"/>
- <TerminusPoint x="115" y="182"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="21" OriginVertexId="0" TerminusVertexId="14">
- <OriginPoint x="115" y="182"/>
- <TerminusPoint x="184" y="289"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="20" OriginVertexId="13" TerminusVertexId="9">
- <OriginPoint x="425" y="80"/>
- <TerminusPoint x="344" y="184"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="18" OriginVertexId="11" TerminusVertexId="13">
- <OriginPoint x="305" y="26"/>
- <TerminusPoint x="425" y="80"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="17" OriginVertexId="11" TerminusVertexId="12">
- <OriginPoint x="305" y="26"/>
- <TerminusPoint x="184" y="80"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- </GraphModelCastorData>
- </childrenGraphModel>
- <Properties>
- <KeyValuePair Key="Expected Time" Integer="0"/>
- <KeyValuePair Key="Has Timeout" Boolean="false"/>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Time Out Action" Integer="2"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Expected Time Unit" Integer="3"/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Maximum Time" Integer="0"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Maximum Time Unit" Integer="3"/>
- <KeyValuePair Key="Description" String=""/>
- <KeyValuePair Key="SchemaVersion" String=""/>
- <KeyValuePair Key="Prefill" Boolean="false"/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Agent Role" String=""/>
- <KeyValuePair Key="Viewpoint" String=""/>
- <KeyValuePair Key="Timeout Activated" Boolean="false"/>
- <KeyValuePair Key="SchemaType" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- </Properties>
-</CompositeActivityDef>
diff --git a/src/main/resources/boot/CA/ManageStateMachine.xml b/src/main/resources/boot/CA/ManageStateMachine.xml deleted file mode 100644 index 47d769b..0000000 --- a/src/main/resources/boot/CA/ManageStateMachine.xml +++ /dev/null @@ -1,214 +0,0 @@ -<CompositeActivityDef ID="-1" Name="ManageStateMachine" Height="0" Width="0" IsLayoutable="false" IsComposite="true">
- <childrenGraphModel>
- <GraphModelCastorData StartVertexId="13" NextId="22">
- <LoopDef ID="15" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="358" y="360"/>
- <OutlinePoint x="328" y="348"/>
- <OutlinePoint x="388" y="348"/>
- <OutlinePoint x="388" y="372"/>
- <OutlinePoint x="328" y="372"/>
- <InEdgeId>19</InEdgeId>
- <OutEdgeId>20</OutEdgeId>
- <OutEdgeId>21</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <JoinDef ID="14" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="357" y="132"/>
- <OutlinePoint x="327" y="120"/>
- <OutlinePoint x="387" y="120"/>
- <OutlinePoint x="387" y="144"/>
- <OutlinePoint x="327" y="144"/>
- <InEdgeId>17</InEdgeId>
- <InEdgeId>20</InEdgeId>
- <OutEdgeId>18</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <AndSplitDef ID="13" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="274" y="39"/>
- <OutlinePoint x="244" y="27"/>
- <OutlinePoint x="304" y="27"/>
- <OutlinePoint x="304" y="51"/>
- <OutlinePoint x="244" y="51"/>
- <OutEdgeId>16</OutEdgeId>
- <OutEdgeId>17</OutEdgeId>
- <Properties>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String=""/>
- </Properties>
- </AndSplitDef>
- <JoinDef ID="4" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="265" y="473"/>
- <OutlinePoint x="235" y="461"/>
- <OutlinePoint x="295" y="461"/>
- <OutlinePoint x="295" y="485"/>
- <OutlinePoint x="235" y="485"/>
- <InEdgeId>8</InEdgeId>
- <InEdgeId>21</InEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <LoopDef ID="3" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="177" y="359"/>
- <OutlinePoint x="147" y="347"/>
- <OutlinePoint x="207" y="347"/>
- <OutlinePoint x="207" y="371"/>
- <OutlinePoint x="147" y="371"/>
- <InEdgeId>6</InEdgeId>
- <OutEdgeId>7</OutEdgeId>
- <OutEdgeId>8</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- <KeyValuePair Key="RoutingScriptName" String="javascript:true;"/>
- </Properties>
- </LoopDef>
- <ActivitySlotDef ID="11" Name="AssignNewVersionFromLast_" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="270" y="251"/>
- <OutlinePoint x="205" y="221"/>
- <OutlinePoint x="335" y="221"/>
- <OutlinePoint x="335" y="281"/>
- <OutlinePoint x="205" y="281"/>
- <InEdgeId>18</InEdgeId>
- <OutEdgeId>19</OutEdgeId>
- <Properties>
- <KeyValuePair Key="ViewName" String="StateMachine"/>
- <KeyValuePair Key="Name" String="AssignNewSchemaVersionFromLast"/>
- </Properties>
- <activityDef>AssignNewVersionFromLast</activityDef>
- </ActivitySlotDef>
- <JoinDef ID="2" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="175" y="131"/>
- <OutlinePoint x="145" y="119"/>
- <OutlinePoint x="205" y="119"/>
- <OutlinePoint x="205" y="143"/>
- <OutlinePoint x="145" y="143"/>
- <InEdgeId>7</InEdgeId>
- <InEdgeId>16</InEdgeId>
- <OutEdgeId>5</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <ActivitySlotDef ID="0" Name="EditDefinition" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="93" y="252"/>
- <OutlinePoint x="28" y="222"/>
- <OutlinePoint x="158" y="222"/>
- <OutlinePoint x="158" y="282"/>
- <OutlinePoint x="28" y="282"/>
- <InEdgeId>5</InEdgeId>
- <OutEdgeId>6</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Prefill" Boolean="false"/>
- <KeyValuePair Key="Prefill Version" String="-1"/>
- <KeyValuePair Key="Name" String="EditDefinition"/>
- </Properties>
- <activityDef>EditStateMachine</activityDef>
- </ActivitySlotDef>
- <NextDef ID="21" OriginVertexId="15" TerminusVertexId="4">
- <OriginPoint x="358" y="360"/>
- <TerminusPoint x="265" y="473"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="19" OriginVertexId="11" TerminusVertexId="15">
- <OriginPoint x="270" y="251"/>
- <TerminusPoint x="358" y="360"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="20" OriginVertexId="15" TerminusVertexId="14">
- <OriginPoint x="358" y="360"/>
- <TerminusPoint x="357" y="132"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="18" OriginVertexId="14" TerminusVertexId="11">
- <OriginPoint x="357" y="132"/>
- <TerminusPoint x="270" y="251"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="8" OriginVertexId="3" TerminusVertexId="4">
- <OriginPoint x="177" y="359"/>
- <TerminusPoint x="265" y="473"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- <NextDef ID="17" OriginVertexId="13" TerminusVertexId="14">
- <OriginPoint x="274" y="39"/>
- <TerminusPoint x="357" y="132"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="7" OriginVertexId="3" TerminusVertexId="2">
- <OriginPoint x="177" y="359"/>
- <TerminusPoint x="175" y="131"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="16" OriginVertexId="13" TerminusVertexId="2">
- <OriginPoint x="274" y="39"/>
- <TerminusPoint x="175" y="131"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="6" OriginVertexId="0" TerminusVertexId="3">
- <OriginPoint x="93" y="252"/>
- <TerminusPoint x="177" y="359"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- <NextDef ID="5" OriginVertexId="2" TerminusVertexId="0">
- <OriginPoint x="175" y="131"/>
- <TerminusPoint x="93" y="252"/>
- <Properties>
- <KeyValuePair Key="Type" String="Straight"/>
- </Properties>
- </NextDef>
- </GraphModelCastorData>
- </childrenGraphModel>
- <Properties>
- <KeyValuePair Key="Expected Time" Integer="0"/>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Has Timeout" Boolean="false"/>
- <KeyValuePair Key="Time Out Action" Integer="2"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Expected Time Unit" Integer="3"/>
- <KeyValuePair Key="Maximum Time" Integer="0"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Maximum Time Unit" Integer="3"/>
- <KeyValuePair Key="Description" String=""/>
- <KeyValuePair Key="SchemaVersion" String=""/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Viewpoint" String=""/>
- <KeyValuePair Key="Agent Role" String=""/>
- <KeyValuePair Key="Timeout Activated" Boolean="false"/>
- <KeyValuePair Key="SchemaType" String=""/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- </Properties>
-</CompositeActivityDef>
diff --git a/src/main/resources/boot/CA/ModuleWorkflow.xml b/src/main/resources/boot/CA/ModuleWorkflow.xml deleted file mode 100644 index 1eb3ee4..0000000 --- a/src/main/resources/boot/CA/ModuleWorkflow.xml +++ /dev/null @@ -1,100 +0,0 @@ -<CompositeActivityDef ID="-1" Name="ModuleWorkflow" Height="0" Width="0" IsLayoutable="false" IsComposite="true">
- <childrenGraphModel>
- <GraphModelCastorData StartVertexId="1" NextId="8">
- <JoinDef ID="6" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="308" y="379"/>
- <OutlinePoint x="278" y="367"/>
- <OutlinePoint x="338" y="367"/>
- <OutlinePoint x="338" y="391"/>
- <OutlinePoint x="278" y="391"/>
- <InEdgeId>7</InEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <LoopDef ID="2" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false" isNext="0">
- <CentrePoint x="322" y="286"/>
- <OutlinePoint x="292" y="274"/>
- <OutlinePoint x="352" y="274"/>
- <OutlinePoint x="352" y="298"/>
- <OutlinePoint x="292" y="298"/>
- <InEdgeId>4</InEdgeId>
- <OutEdgeId>5</OutEdgeId>
- <OutEdgeId>7</OutEdgeId>
- <Properties>
- <KeyValuePair Key="LastNum" String="2"/>
- <KeyValuePair Key="RoutingScriptName" String=""/>
- <KeyValuePair Key="RoutingScriptVersion" String=""/>
- </Properties>
- </LoopDef>
- <JoinDef ID="1" Name="" Height="24" Width="60" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="308" y="42"/>
- <OutlinePoint x="278" y="30"/>
- <OutlinePoint x="338" y="30"/>
- <OutlinePoint x="338" y="54"/>
- <OutlinePoint x="278" y="54"/>
- <InEdgeId>5</InEdgeId>
- <OutEdgeId>3</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Type" String="Join"/>
- </Properties>
- </JoinDef>
- <ActivitySlotDef ID="0" Name="EditModuleDefinition slot" Height="60" Width="130" IsLayoutable="true" IsComposite="false">
- <CentrePoint x="206" y="151"/>
- <OutlinePoint x="141" y="121"/>
- <OutlinePoint x="271" y="121"/>
- <OutlinePoint x="271" y="181"/>
- <OutlinePoint x="141" y="181"/>
- <InEdgeId>3</InEdgeId>
- <OutEdgeId>4</OutEdgeId>
- <Properties>
- <KeyValuePair Key="Name" String="EditModuleDefinition"/>
- <KeyValuePair Key="Version" Integer="0"/>
- </Properties>
- <activityDef>EditModuleDefinition</activityDef>
- </ActivitySlotDef>
- <NextDef ID="5" OriginVertexId="2" TerminusVertexId="1">
- <OriginPoint x="322" y="286"/>
- <TerminusPoint x="308" y="42"/>
- <Properties>
- <KeyValuePair Key="Alias" String="true"/>
- </Properties>
- </NextDef>
- <NextDef ID="4" OriginVertexId="0" TerminusVertexId="2">
- <OriginPoint x="206" y="151"/>
- <TerminusPoint x="322" y="286"/>
- <Properties/>
- </NextDef>
- <NextDef ID="3" OriginVertexId="1" TerminusVertexId="0">
- <OriginPoint x="308" y="42"/>
- <TerminusPoint x="206" y="151"/>
- <Properties/>
- </NextDef>
- <NextDef ID="7" OriginVertexId="2" TerminusVertexId="6">
- <OriginPoint x="322" y="286"/>
- <TerminusPoint x="308" y="379"/>
- <Properties>
- <KeyValuePair Key="Alias" String="false"/>
- </Properties>
- </NextDef>
- </GraphModelCastorData>
- </childrenGraphModel>
- <Properties>
- <KeyValuePair Key="Description" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Viewpoint" String=""/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="SchemaVersion" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Agent Role" String=""/>
- <KeyValuePair Key="AlwaysUseOutcome" Boolean="false"/>
- <KeyValuePair Key="SchemaType" String=""/>
- </Properties>
-</CompositeActivityDef>
\ No newline at end of file diff --git a/src/main/resources/boot/EA/AssignNewVersionFromLast.xml b/src/main/resources/boot/EA/AssignNewVersionFromLast.xml deleted file mode 100644 index 248dfee..0000000 --- a/src/main/resources/boot/EA/AssignNewVersionFromLast.xml +++ /dev/null @@ -1,20 +0,0 @@ -<ActivityDef ID="10" Name="AssignNewVersionFromLast" Height="0" Width="0" IsLayoutable="false" IsComposite="false">
- <Properties>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Description" String="Creates a new numbered viewpoint as a clone of the last for use in workflows. You can change the specific outcome referenced by this viewpoint in the Data Viewer."/>
- <KeyValuePair Key="SchemaVersion" String=""/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Viewpoint" String=""/>
- <KeyValuePair Key="Agent Role" String="Admin"/>
- <KeyValuePair Key="SchemaType" String=""/>
- <KeyValuePair Key="ScriptName" String="CreateNewNumberedVersionFromLast"/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String="0"/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- <KeyValuePair Key="ViewName" String=""/>
- </Properties>
-</ActivityDef>
diff --git a/src/main/resources/boot/EA/EditActivityDef.xml b/src/main/resources/boot/EA/EditActivityDef.xml deleted file mode 100644 index e90c225..0000000 --- a/src/main/resources/boot/EA/EditActivityDef.xml +++ /dev/null @@ -1,19 +0,0 @@ -<ActivityDef ID="23" Name="EditActivityDef" Height="0" Width="0" IsLayoutable="false" IsComposite="false">
- <Properties>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Description" String="Edit this Activity Definition"/>
- <KeyValuePair Key="SchemaVersion" String="0"/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Viewpoint" String="last"/>
- <KeyValuePair Key="Agent Role" String="Admin"/>
- <KeyValuePair Key="SchemaType" String=""/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- </Properties>
-</ActivityDef>
diff --git a/src/main/resources/boot/EA/EditModuleDefinition.xml b/src/main/resources/boot/EA/EditModuleDefinition.xml deleted file mode 100644 index 04afe4d..0000000 --- a/src/main/resources/boot/EA/EditModuleDefinition.xml +++ /dev/null @@ -1 +0,0 @@ -<ActivityDef ID="-1" Name="EditModuleDefinition" Height="0" Width="0" IsLayoutable="false" IsComposite="false"><Properties><KeyValuePair Key="Description" String=""/><KeyValuePair Key="Ignorable" Boolean="false"/><KeyValuePair Key="ScriptVersion" String=""/><KeyValuePair Key="Mail Message" String=""/><KeyValuePair Key="Viewpoint" String="last"/><KeyValuePair Key="Agent Name" String=""/><KeyValuePair Key="SchemaVersion" String="0"/><KeyValuePair Key="Skippable" Boolean="false"/><KeyValuePair Key="ScriptName" String=""/><KeyValuePair Key="Mail event" String=""/><KeyValuePair Key="Autostart" Boolean="true"/><KeyValuePair Key="Repeatable" Boolean="false"/><KeyValuePair Key="Show time" Boolean="true"/><KeyValuePair Key="Agent Role" String=""/><KeyValuePair Key="AlwaysUseOutcome" Boolean="false"/><KeyValuePair Key="SchemaType" String="Module"/></Properties></ActivityDef>
\ No newline at end of file diff --git a/src/main/resources/boot/EA/EditSchema.xml b/src/main/resources/boot/EA/EditSchema.xml deleted file mode 100644 index 3b01fdc..0000000 --- a/src/main/resources/boot/EA/EditSchema.xml +++ /dev/null @@ -1,19 +0,0 @@ -<ActivityDef ID="1" Name="EditSchema" Height="0" Width="0" IsLayoutable="false" IsComposite="false">
- <Properties>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Description" String="Edit this XML Schema"/>
- <KeyValuePair Key="SchemaVersion" String="0"/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Viewpoint" String="last"/>
- <KeyValuePair Key="Agent Role" String="Admin"/>
- <KeyValuePair Key="SchemaType" String="Schema"/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- </Properties>
-</ActivityDef>
diff --git a/src/main/resources/boot/EA/EditScriptDefinition.xml b/src/main/resources/boot/EA/EditScriptDefinition.xml deleted file mode 100644 index 11c14ec..0000000 --- a/src/main/resources/boot/EA/EditScriptDefinition.xml +++ /dev/null @@ -1,19 +0,0 @@ -<ActivityDef ID="1" Name="EditScriptDefinition" Height="0" Width="0" IsLayoutable="false" IsComposite="false">
- <Properties>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Description" String="Edit this script definition"/>
- <KeyValuePair Key="SchemaVersion" String="0"/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Agent Role" String="Admin"/>
- <KeyValuePair Key="Viewpoint" String="last"/>
- <KeyValuePair Key="SchemaType" String="Script"/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- </Properties>
-</ActivityDef>
diff --git a/src/main/resources/boot/EA/EditStateMachine.xml b/src/main/resources/boot/EA/EditStateMachine.xml deleted file mode 100644 index a1060b7..0000000 --- a/src/main/resources/boot/EA/EditStateMachine.xml +++ /dev/null @@ -1,19 +0,0 @@ -<ActivityDef ID="1" Name="EditStateMachine" Height="0" Width="0" IsLayoutable="false" IsComposite="false">
- <Properties>
- <KeyValuePair Key="Repeatable" Boolean="false"/>
- <KeyValuePair Key="Agent Name" String=""/>
- <KeyValuePair Key="Autostart" Boolean="true"/>
- <KeyValuePair Key="Mail Message" String=""/>
- <KeyValuePair Key="Mail event" String=""/>
- <KeyValuePair Key="Description" String="Edit this StateMachine definition"/>
- <KeyValuePair Key="SchemaVersion" String="0"/>
- <KeyValuePair Key="Show time" Boolean="true"/>
- <KeyValuePair Key="Viewpoint" String="last"/>
- <KeyValuePair Key="Agent Role" String="Admin"/>
- <KeyValuePair Key="SchemaType" String="StateMachine"/>
- <KeyValuePair Key="ScriptName" String=""/>
- <KeyValuePair Key="Ignorable" Boolean="false"/>
- <KeyValuePair Key="ScriptVersion" String=""/>
- <KeyValuePair Key="Skippable" Boolean="false"/>
- </Properties>
-</ActivityDef>
diff --git a/src/main/resources/boot/SC/CreateNewNumberedVersionFromLast.xml b/src/main/resources/boot/SC/CreateNewNumberedVersionFromLast.xml deleted file mode 100644 index 7a63b76..0000000 --- a/src/main/resources/boot/SC/CreateNewNumberedVersionFromLast.xml +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<cristalscript>
- <output name="errors" type="com.c2kernel.scripting.ErrorInfo"/>
- <script language="javascript" name="CreateNewNumberedVersionFromLast"><![CDATA[
-
- var viewName = job.getActPropString("ViewName");
-
- if (viewName.equals(""))
- throw "ViewName not specified. Cannot create new version.";
-
- var lastView = -1;
- var existingViews = item.getContents("/ViewPoint/"+viewName);
- for (i=0; i<existingViews.length; i++) {
- var thisView = parseInt(existingViews[i]);
- if (thisView!=NaN && lastView < thisView) lastView = thisView;
- }
- lastView++;
- try {
- var existingLast = agent.unmarshall(item.queryData("/ViewPoint/"+viewName+"/last"));
- } catch (e) {
- throw "No data found. You must submit at least one version before executing this activity.";
- }
-
- var params = new Array(3);
- params[0] = viewName;
- params[1] = lastView;
- params[2] = existingLast.getEventId();
- agent.execute(item, "WriteViewpoint", params);
-
- ]]></script>
-</cristalscript>
diff --git a/src/main/resources/boot/allbootitems.txt b/src/main/resources/boot/allbootitems.txt index 9bbea75..7a3cd03 100644 --- a/src/main/resources/boot/allbootitems.txt +++ b/src/main/resources/boot/allbootitems.txt @@ -12,21 +12,8 @@ OD/Schema OD/Script
OD/Errors
OD/StateMachine
-EA/AssignNewVersionFromLast
-EA/EditActivityDef
-EA/EditSchema
-EA/EditScriptDefinition
-EA/EditStateMachine
EA/CreateNewItem
EA/CreateNewAgent
-EA/EditModuleDefinition
CA/NoWorkflow
CA/ServerItemWorkflow
-CA/ModuleWorkflow
-CA/ManageCompositeActDef
-CA/ManageElementaryActDef
-CA/ManageSchema
-CA/ManageScript
-CA/ManageStateMachine
-SC/CreateNewNumberedVersionFromLast
SC/ServerNewEntity
|
