diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptComplexGateway..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptComplexGateway..st index c5ab48df2..fef6bc162 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptComplexGateway..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptComplexGateway..st @@ -1,2 +1,4 @@ gateways -acceptComplexGateway: aBpmComplexGatewayDefinition \ No newline at end of file +acceptComplexGateway: aBpmComplexGatewayDefinition + + self acceptGateway: aBpmComplexGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptEventBasedGateway..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptEventBasedGateway..st index 23201aa38..b67abf05e 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptEventBasedGateway..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptEventBasedGateway..st @@ -1,2 +1,4 @@ gateways -acceptEventBasedGateway: aBpmEventBasedGatewayDefinition \ No newline at end of file +acceptEventBasedGateway: aBpmEventBasedGatewayDefinition + + self acceptGateway: aBpmEventBasedGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptExclusiveEventBasedGateway..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptExclusiveEventBasedGateway..st index d4058929d..ee986bf55 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptExclusiveEventBasedGateway..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptExclusiveEventBasedGateway..st @@ -1,2 +1,4 @@ gateways -acceptExclusiveEventBasedGateway: aBpmExclusiveEventBasedGatewayDefinition \ No newline at end of file +acceptExclusiveEventBasedGateway: aBpmExclusiveEventBasedGatewayDefinition + + self acceptGateway: aBpmExclusiveEventBasedGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptExclusiveGateway..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptExclusiveGateway..st index 61b7f874e..89d3e936a 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptExclusiveGateway..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptExclusiveGateway..st @@ -1,2 +1,4 @@ gateways -acceptExclusiveGateway: aBpmExclusiveGatewayDefinition \ No newline at end of file +acceptExclusiveGateway: aBpmExclusiveGatewayDefinition + + self acceptGateway: aBpmExclusiveGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptGateway..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptGateway..st index 6c2691621..7102e211b 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptGateway..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptGateway..st @@ -1,2 +1,4 @@ gateways -acceptGateway: aBpmGatewayDefinition \ No newline at end of file +acceptGateway: aBpmGatewayDefinition + + aBpmGatewayDefinition outTransitions do: [:each | each acceptVisitor: self]. \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptInclusiveGateway..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptInclusiveGateway..st index b423a850c..a3288a245 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptInclusiveGateway..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptInclusiveGateway..st @@ -1,2 +1,4 @@ gateways -acceptInclusiveGateway: aBpmInclusiveGatewayDefinition \ No newline at end of file +acceptInclusiveGateway: aBpmInclusiveGatewayDefinition + + self acceptGateway: aBpmInclusiveGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptIntermediateEvent..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptIntermediateEvent..st index 2fead34b3..e5a7da38b 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptIntermediateEvent..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptIntermediateEvent..st @@ -1,2 +1,4 @@ events -acceptIntermediateEvent: aBpmIntermediateComponentDefinition \ No newline at end of file +acceptIntermediateEvent: aBpmIntermediateComponentDefinition + + aBpmIntermediateComponentDefinition eventDefinition outTransitions do: [:transition | transition acceptVisitor: self] \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptOrbeonTask..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptOrbeonTask..st index 083ed97d1..41a256ad1 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptOrbeonTask..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptOrbeonTask..st @@ -1,2 +1,4 @@ tasks -acceptOrbeonTask: aBpmOrbeonTaskDefinition \ No newline at end of file +acceptOrbeonTask: aBpmOrbeonTaskDefinition + + self acceptTask: aBpmOrbeonTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptParallelEventBasedGateway..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptParallelEventBasedGateway..st index ce620da80..b0fe394b2 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptParallelEventBasedGateway..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptParallelEventBasedGateway..st @@ -1,2 +1,4 @@ gateways -acceptParallelEventBasedGateway: aBpmParallelEventBasedGatewayDefinition \ No newline at end of file +acceptParallelEventBasedGateway: aBpmParallelEventBasedGatewayDefinition + + self acceptGateway: aBpmParallelEventBasedGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptParallelGateway..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptParallelGateway..st index acaff39aa..288b98a51 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptParallelGateway..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptParallelGateway..st @@ -1,2 +1,4 @@ gateways -acceptParallelGateway: aBpmParallelGatewayDefinition \ No newline at end of file +acceptParallelGateway: aBpmParallelGatewayDefinition + + self acceptGateway: aBpmParallelGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptScriptTask..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptScriptTask..st index c8971df3a..ca144a917 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptScriptTask..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptScriptTask..st @@ -1,2 +1,4 @@ tasks -acceptScriptTask: aBpmScriptTaskDefinition \ No newline at end of file +acceptScriptTask: aBpmScriptTaskDefinition + + self acceptTask: aBpmScriptTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSeasideTask..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSeasideTask..st index f926de492..9d3c47e23 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSeasideTask..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSeasideTask..st @@ -1,2 +1,4 @@ tasks -acceptSeasideTask: aBpmSeasideTaskDefinition \ No newline at end of file +acceptSeasideTask: aBpmSeasideTaskDefinition + + self acceptTask: aBpmSeasideTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSendTask..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSendTask..st index c8ac8c785..d630d9482 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSendTask..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSendTask..st @@ -1,2 +1,4 @@ tasks -acceptSendTask: aBpmSendTaskDefinition \ No newline at end of file +acceptSendTask: aBpmSendTaskDefinition + + self acceptTask: aBpmSendTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptStartEvent..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptStartEvent..st index f8e2989b2..6cdd3e0ea 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptStartEvent..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptStartEvent..st @@ -1,2 +1,4 @@ events -acceptStartEvent: aBpmStartComponentDefinition \ No newline at end of file +acceptStartEvent: aBpmStartComponentDefinition + + aBpmStartComponentDefinition eventDefinition outTransitions do: [:transition | transition acceptVisitor: self] \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSubProcessTask..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSubProcessTask..st index 1a2a9c1b3..aa0fbe99e 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSubProcessTask..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptSubProcessTask..st @@ -1,2 +1,4 @@ tasks -acceptSubProcessTask: aBpmSubProcessTaskDefinition \ No newline at end of file +acceptSubProcessTask: aBpmSubProcessTaskDefinition + + self acceptTask: aBpmSubProcessTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptTask..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptTask..st index 7c9a4d72e..9f18f654d 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptTask..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptTask..st @@ -1,2 +1,11 @@ tasks -acceptTask: aBpmAbstractTaskDefinition \ No newline at end of file +acceptTask: aBpmAbstractTaskDefinition + + (visitedTasks identityIncludes: aBpmAbstractTaskDefinition) ifTrue: [^self]. + + visitedTasks add: aBpmAbstractTaskDefinition. + + aBpmAbstractTaskDefinition outTransitions do: [:each | each acceptVisitor: self]. + + aBpmAbstractTaskDefinition isTaskDefinition + ifTrue: [aBpmAbstractTaskDefinition attachedEvents do: [:each | each acceptVisitor: self]]. \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptTransition..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptTransition..st index c599e4a1e..4475f585e 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptTransition..st +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/acceptTransition..st @@ -1,2 +1,15 @@ transition -acceptTransition: aBpmTransitionDefinition \ No newline at end of file +acceptTransition: aBpmTransitionDefinition + "The receiver accept the transition and check if it has a condition. + Get all fields used in the condition and search in all for the used field. + If the field is not found --> the condition is going to fail" + + (visitedTransitions identityIncludes: aBpmTransitionDefinition) ifTrue: [^self]. + + visitedTransitions add: aBpmTransitionDefinition. + aBpmTransitionDefinition getUsedFieldsNamesInCondition do: [:fieldName | + ((visitedTasks select: [:each | each isOrbeonTask or:[each isSeasideTask]]) anySatisfy: [:task | task getComponentClass getFieldsNames includes: fieldName]) + ifFalse: [missingEvaluationFields add: fieldName]. + ]. + + aBpmTransitionDefinition endArtifact acceptVisitor: self. \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/hasMissingEvaluationFields.st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/hasMissingEvaluationFields.st new file mode 100644 index 000000000..cfbca7e69 --- /dev/null +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/hasMissingEvaluationFields.st @@ -0,0 +1,4 @@ +other +hasMissingEvaluationFields + + ^missingEvaluationFields size \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/initialize.st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/initialize.st similarity index 100% rename from repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/initialize.st rename to repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/initialize.st diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/missingEvaluationFields..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/missingEvaluationFields..st new file mode 100644 index 000000000..43ad207ad --- /dev/null +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/missingEvaluationFields..st @@ -0,0 +1,3 @@ +Updating +missingEvaluationFields: newValue + missingEvaluationFields := newValue \ No newline at end of file diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/missingEvaluationFields.st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/missingEvaluationFields.st new file mode 100644 index 000000000..2a8c4cd6b --- /dev/null +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/missingEvaluationFields.st @@ -0,0 +1,3 @@ +Accessing +missingEvaluationFields + ^missingEvaluationFields \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/visitedTasks..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/visitedTasks..st similarity index 100% rename from repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/visitedTasks..st rename to repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/visitedTasks..st diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/visitedTasks.st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/visitedTasks.st similarity index 100% rename from repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/visitedTasks.st rename to repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/visitedTasks.st diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/visitedTransitions..st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/visitedTransitions..st similarity index 100% rename from repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/visitedTransitions..st rename to repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/visitedTransitions..st diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/visitedTransitions.st b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/visitedTransitions.st similarity index 100% rename from repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/visitedTransitions.st rename to repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/instance/visitedTransitions.st diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/methodProperties.json b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/methodProperties.json index 812eba307..a54167e75 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/methodProperties.json +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/methodProperties.json @@ -2,21 +2,29 @@ "class" : { }, "instance" : { - "acceptComplexGateway:" : "brunobb 08/14/2019 13:01", - "acceptEndEvent:" : "brunobb 08/14/2019 13:01", - "acceptEventBasedGateway:" : "brunobb 08/14/2019 13:01", - "acceptExclusiveEventBasedGateway:" : "brunobb 08/14/2019 13:01", - "acceptExclusiveGateway:" : "brunobb 08/14/2019 13:01", - "acceptGateway:" : "brunobb 08/14/2019 13:01", - "acceptInclusiveGateway:" : "brunobb 08/14/2019 13:01", - "acceptIntermediateEvent:" : "brunobb 08/14/2019 13:01", - "acceptOrbeonTask:" : "brunobb 08/14/2019 13:01", - "acceptParallelEventBasedGateway:" : "brunobb 08/14/2019 13:01", - "acceptParallelGateway:" : "brunobb 08/14/2019 13:01", - "acceptScriptTask:" : "brunobb 08/14/2019 13:01", - "acceptSeasideTask:" : "brunobb 08/14/2019 13:01", - "acceptSendTask:" : "brunobb 08/14/2019 13:01", - "acceptStartEvent:" : "brunobb 08/14/2019 13:01", - "acceptSubProcessTask:" : "brunobb 08/14/2019 13:01", - "acceptTask:" : "brunobb 10/09/2019 13:21", - "acceptTransition:" : "brunobb 08/14/2019 13:01" } } + "acceptComplexGateway:" : "brunobb 10/11/2019 06:47", + "acceptEndEvent:" : "brunobb 10/11/2019 06:47", + "acceptEventBasedGateway:" : "brunobb 10/11/2019 06:47", + "acceptExclusiveEventBasedGateway:" : "brunobb 10/11/2019 06:47", + "acceptExclusiveGateway:" : "brunobb 10/11/2019 06:47", + "acceptGateway:" : "brunobb 10/11/2019 06:47", + "acceptInclusiveGateway:" : "brunobb 10/11/2019 06:47", + "acceptIntermediateEvent:" : "brunobb 10/11/2019 06:47", + "acceptOrbeonTask:" : "brunobb 10/11/2019 06:47", + "acceptParallelEventBasedGateway:" : "brunobb 10/11/2019 06:47", + "acceptParallelGateway:" : "brunobb 10/11/2019 06:47", + "acceptScriptTask:" : "brunobb 10/11/2019 06:47", + "acceptSeasideTask:" : "brunobb 10/11/2019 06:47", + "acceptSendTask:" : "brunobb 10/11/2019 06:47", + "acceptStartEvent:" : "brunobb 10/11/2019 06:47", + "acceptSubProcessTask:" : "brunobb 10/11/2019 06:47", + "acceptTask:" : "brunobb 10/11/2019 06:47", + "acceptTransition:" : "brunobb 10/11/2019 06:47", + "hasMissingEvaluationFields" : "brunobb 10/11/2019 06:47", + "initialize" : "brunobb 10/11/2019 06:47", + "missingEvaluationFields" : "brunobb 10/11/2019 06:47", + "missingEvaluationFields:" : "brunobb 10/11/2019 06:47", + "visitedTasks" : "brunobb 10/11/2019 06:47", + "visitedTasks:" : "brunobb 10/11/2019 06:47", + "visitedTransitions" : "brunobb 10/11/2019 06:47", + "visitedTransitions:" : "brunobb 10/11/2019 06:47" } } diff --git a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/properties.json b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/properties.json index c85f61eee..53dbe2db8 100644 --- a/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/properties.json +++ b/repository/BpmCore.package/BpmFieldsInCondtionsAfterGatewayVisitor.class/properties.json @@ -6,7 +6,9 @@ ], "commentStamp" : "", "instvars" : [ - ], + "visitedTasks", + "visitedTransitions", + "missingEvaluationFields" ], "name" : "BpmFieldsInCondtionsAfterGatewayVisitor", "pools" : [ ], diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/README.md b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/README.md deleted file mode 100644 index e69de29bb..000000000 diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptComplexGateway..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptComplexGateway..st deleted file mode 100644 index fef6bc162..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptComplexGateway..st +++ /dev/null @@ -1,4 +0,0 @@ -gateways -acceptComplexGateway: aBpmComplexGatewayDefinition - - self acceptGateway: aBpmComplexGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptEndEvent..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptEndEvent..st deleted file mode 100644 index 602cdd501..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptEndEvent..st +++ /dev/null @@ -1,2 +0,0 @@ -events -acceptEndEvent: aBpmEndComponentDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptEventBasedGateway..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptEventBasedGateway..st deleted file mode 100644 index b67abf05e..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptEventBasedGateway..st +++ /dev/null @@ -1,4 +0,0 @@ -gateways -acceptEventBasedGateway: aBpmEventBasedGatewayDefinition - - self acceptGateway: aBpmEventBasedGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptExclusiveEventBasedGateway..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptExclusiveEventBasedGateway..st deleted file mode 100644 index ee986bf55..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptExclusiveEventBasedGateway..st +++ /dev/null @@ -1,4 +0,0 @@ -gateways -acceptExclusiveEventBasedGateway: aBpmExclusiveEventBasedGatewayDefinition - - self acceptGateway: aBpmExclusiveEventBasedGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptExclusiveGateway..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptExclusiveGateway..st deleted file mode 100644 index 89d3e936a..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptExclusiveGateway..st +++ /dev/null @@ -1,4 +0,0 @@ -gateways -acceptExclusiveGateway: aBpmExclusiveGatewayDefinition - - self acceptGateway: aBpmExclusiveGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptGateway..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptGateway..st deleted file mode 100644 index 7102e211b..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptGateway..st +++ /dev/null @@ -1,4 +0,0 @@ -gateways -acceptGateway: aBpmGatewayDefinition - - aBpmGatewayDefinition outTransitions do: [:each | each acceptVisitor: self]. \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptInclusiveGateway..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptInclusiveGateway..st deleted file mode 100644 index a3288a245..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptInclusiveGateway..st +++ /dev/null @@ -1,4 +0,0 @@ -gateways -acceptInclusiveGateway: aBpmInclusiveGatewayDefinition - - self acceptGateway: aBpmInclusiveGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptIntermediateEvent..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptIntermediateEvent..st deleted file mode 100644 index e5a7da38b..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptIntermediateEvent..st +++ /dev/null @@ -1,4 +0,0 @@ -events -acceptIntermediateEvent: aBpmIntermediateComponentDefinition - - aBpmIntermediateComponentDefinition eventDefinition outTransitions do: [:transition | transition acceptVisitor: self] \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptOrbeonTask..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptOrbeonTask..st deleted file mode 100644 index 41a256ad1..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptOrbeonTask..st +++ /dev/null @@ -1,4 +0,0 @@ -tasks -acceptOrbeonTask: aBpmOrbeonTaskDefinition - - self acceptTask: aBpmOrbeonTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptParallelEventBasedGateway..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptParallelEventBasedGateway..st deleted file mode 100644 index b0fe394b2..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptParallelEventBasedGateway..st +++ /dev/null @@ -1,4 +0,0 @@ -gateways -acceptParallelEventBasedGateway: aBpmParallelEventBasedGatewayDefinition - - self acceptGateway: aBpmParallelEventBasedGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptParallelGateway..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptParallelGateway..st deleted file mode 100644 index 288b98a51..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptParallelGateway..st +++ /dev/null @@ -1,4 +0,0 @@ -gateways -acceptParallelGateway: aBpmParallelGatewayDefinition - - self acceptGateway: aBpmParallelGatewayDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptScriptTask..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptScriptTask..st deleted file mode 100644 index ca144a917..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptScriptTask..st +++ /dev/null @@ -1,4 +0,0 @@ -tasks -acceptScriptTask: aBpmScriptTaskDefinition - - self acceptTask: aBpmScriptTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSeasideTask..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSeasideTask..st deleted file mode 100644 index 9d3c47e23..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSeasideTask..st +++ /dev/null @@ -1,4 +0,0 @@ -tasks -acceptSeasideTask: aBpmSeasideTaskDefinition - - self acceptTask: aBpmSeasideTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSendTask..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSendTask..st deleted file mode 100644 index d630d9482..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSendTask..st +++ /dev/null @@ -1,4 +0,0 @@ -tasks -acceptSendTask: aBpmSendTaskDefinition - - self acceptTask: aBpmSendTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptStartEvent..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptStartEvent..st deleted file mode 100644 index 6cdd3e0ea..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptStartEvent..st +++ /dev/null @@ -1,4 +0,0 @@ -events -acceptStartEvent: aBpmStartComponentDefinition - - aBpmStartComponentDefinition eventDefinition outTransitions do: [:transition | transition acceptVisitor: self] \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSubProcessTask..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSubProcessTask..st deleted file mode 100644 index aa0fbe99e..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptSubProcessTask..st +++ /dev/null @@ -1,4 +0,0 @@ -tasks -acceptSubProcessTask: aBpmSubProcessTaskDefinition - - self acceptTask: aBpmSubProcessTaskDefinition \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptTask..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptTask..st deleted file mode 100644 index 9f18f654d..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptTask..st +++ /dev/null @@ -1,11 +0,0 @@ -tasks -acceptTask: aBpmAbstractTaskDefinition - - (visitedTasks identityIncludes: aBpmAbstractTaskDefinition) ifTrue: [^self]. - - visitedTasks add: aBpmAbstractTaskDefinition. - - aBpmAbstractTaskDefinition outTransitions do: [:each | each acceptVisitor: self]. - - aBpmAbstractTaskDefinition isTaskDefinition - ifTrue: [aBpmAbstractTaskDefinition attachedEvents do: [:each | each acceptVisitor: self]]. \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptTransition..st b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptTransition..st deleted file mode 100644 index 4475f585e..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/instance/acceptTransition..st +++ /dev/null @@ -1,15 +0,0 @@ -transition -acceptTransition: aBpmTransitionDefinition - "The receiver accept the transition and check if it has a condition. - Get all fields used in the condition and search in all for the used field. - If the field is not found --> the condition is going to fail" - - (visitedTransitions identityIncludes: aBpmTransitionDefinition) ifTrue: [^self]. - - visitedTransitions add: aBpmTransitionDefinition. - aBpmTransitionDefinition getUsedFieldsNamesInCondition do: [:fieldName | - ((visitedTasks select: [:each | each isOrbeonTask or:[each isSeasideTask]]) anySatisfy: [:task | task getComponentClass getFieldsNames includes: fieldName]) - ifFalse: [missingEvaluationFields add: fieldName]. - ]. - - aBpmTransitionDefinition endArtifact acceptVisitor: self. \ No newline at end of file diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/methodProperties.json b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/methodProperties.json deleted file mode 100644 index f60d7a4ae..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/methodProperties.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "acceptComplexGateway:" : "brunobb 12/14/2018 09:59", - "acceptEndEvent:" : "brunobb 12/14/2018 09:59", - "acceptEventBasedGateway:" : "brunobb 12/14/2018 09:59", - "acceptExclusiveEventBasedGateway:" : "brunobb 12/14/2018 09:59", - "acceptExclusiveGateway:" : "brunobb 12/14/2018 09:59", - "acceptGateway:" : "brunobb 12/14/2018 10:02", - "acceptInclusiveGateway:" : "brunobb 12/14/2018 09:59", - "acceptIntermediateEvent:" : "brunobb 12/14/2018 10:02", - "acceptOrbeonTask:" : "brunobb 12/14/2018 09:59", - "acceptParallelEventBasedGateway:" : "brunobb 12/14/2018 09:59", - "acceptParallelGateway:" : "brunobb 12/14/2018 09:59", - "acceptScriptTask:" : "brunobb 12/14/2018 09:59", - "acceptSeasideTask:" : "brunobb 12/14/2018 09:59", - "acceptSendTask:" : "brunobb 12/14/2018 09:59", - "acceptStartEvent:" : "brunobb 12/14/2018 10:02", - "acceptSubProcessTask:" : "brunobb 12/14/2018 09:59", - "acceptTask:" : "brunobb 12/14/2018 09:59", - "acceptTransition:" : "brunobb 08/14/2019 13:05", - "initialize" : "brunobb 12/14/2018 10:00", - "visitedTasks" : "brunobb 12/14/2018 09:59", - "visitedTasks:" : "brunobb 12/14/2018 09:59", - "visitedTransitions" : "brunobb 12/14/2018 09:59", - "visitedTransitions:" : "brunobb 12/14/2018 09:59" } } diff --git a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/properties.json b/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/properties.json deleted file mode 100644 index 73428d5a5..000000000 --- a/repository/BpmCore.package/BpmProcessPathAnalyzerVisitor.class/properties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "category" : "BpmCore", - "classinstvars" : [ - ], - "classvars" : [ - ], - "commentStamp" : "", - "instvars" : [ - "visitedTasks", - "visitedTransitions", - "missingEvaluationFields" ], - "name" : "BpmProcessPathAnalyzerVisitor", - "pools" : [ - ], - "super" : "BpmProcessAbstractVisitor", - "type" : "normal" } diff --git a/repository/BpmCore.package/monticello.meta/version b/repository/BpmCore.package/monticello.meta/version index a85c541a0..124f16bf5 100644 --- a/repository/BpmCore.package/monticello.meta/version +++ b/repository/BpmCore.package/monticello.meta/version @@ -1 +1 @@ -(name 'BpmCore-brunobb.562' message '' id '4a169ec1-c72a-4431-a87a-55bcf7073862' date '10/10/2019' time '04:45:18' author 'brunobb' ancestors ((name 'BpmCore-brunobb.561' message '' id 'c1babf12-e35f-4743-96de-d2cde40ec3a8' date '10/09/2019' time '13:17:15' author 'brunobb' ancestors ((name 'BpmCore-brunobb.560' message '' id '17f41e73-920b-47e2-b899-4760c651682e' date '10/09/2019' time '12:27:27' author 'brunobb' ancestors ((name 'BpmCore-brunobb.559' message '' id 'c8f63abd-8615-485c-813a-e038729b4f10' date '10/04/2019' time '11:17:39' author 'brunobb' ancestors ((name 'BpmCore-brunobb.558' message '' id 'd2ec2d41-49ad-4170-b35c-3a75b3d01b8d' date '09/30/2019' time '12:36:33' author 'brunobb' ancestors ((name 'BpmCore-brunobb.557' message '' id '0a0ca653-11a3-4d46-8853-da6f8301158a' date '09/26/2019' time '03:51:00' author 'brunobb' ancestors ((name 'BpmCore-brunobb.556' message '' id '91090957-0096-433f-8b7c-4c3b4e0370ad' date '09/26/2019' time '03:02:59' author 'brunobb' ancestors ((name 'BpmCore-brunobb.555' message '' id '9418a5f0-6cc5-4d17-b40f-30fe189dab80' date '09/26/2019' time '02:21:59' author 'brunobb' ancestors ((name 'BpmCore-brunobb.554' message '' id '593623c4-465f-4b89-8815-492056832894' date '09/25/2019' time '12:48:50' author 'brunobb' ancestors ((name 'BpmCore-brunobb.553' message '' id '8cfb360d-0bd9-4372-8882-71263ce1b86a' date '09/25/2019' time '12:39:00' author 'brunobb' ancestors ((name 'BpmCore-brunobb.552' message '' id 'eed2b4b7-c7b3-488e-b746-81fbeef26135' date '09/25/2019' time '11:44:40' author 'brunobb' ancestors ((name 'BpmCore-brunobb.551' message '' id 'b5e2a8c3-d004-42f1-af6c-08e28fe6190a' date '09/25/2019' time '11:18:12' author 'brunobb' ancestors ((name 'BpmCore-brunobb.550' message '' id '249a445f-f194-4e24-b8c9-1979a5416977' date '09/23/2019' time '09:08:19' author 'brunobb' ancestors ((name 'BpmCore-brunobb.549' message '' id '6b9b7bb3-5826-425e-a089-3254d8794f48' date '09/23/2019' time '09:02:54' author 'brunobb' ancestors ((name 'BpmCore-brunobb.548' message '' id '7d7181d1-1d07-4257-9c64-91a5b46ca05c' date '09/20/2019' time '11:02:23' author 'brunobb' ancestors ((name 'BpmCore-brunobb.547' message '' id '813c056c-9368-42b6-8171-860674529539' date '09/20/2019' time '08:44:28' author 'brunobb' ancestors ((name 'BpmCore-brunobb.546' message '' id '63af3174-7552-4f78-bc77-e92ae46b62ce' date '09/20/2019' time '07:53:40' author 'brunobb' ancestors ((name 'BpmCore-brunobb.545' message '' id '67d1f597-35e4-47fd-ab9b-942dca8c0e7d' date '09/19/2019' time '10:23:35' author 'brunobb' ancestors ((name 'BpmCore-brunobb.544' message '' id 'ffab5943-dcd1-4574-9b01-eb02f96cb5fe' date '09/19/2019' time '08:53:04' author 'brunobb' ancestors ((name 'BpmCore-brunobb.543' message '' id 'a0b7f492-f5ee-421f-ad35-053ce936b0ec' date '09/18/2019' time '13:11:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.542' message '' id '5ea6b1b5-8ade-44b9-ba7a-bb6ef74ad26f' date '08/29/2019' time '10:56:27' author 'brunobb' ancestors ((name 'BpmCore-brunobb.541' message '' id '84f2c504-4197-4558-8492-2cdb48a352fa' date '08/28/2019' time '10:00:24' author 'brunobb' ancestors ((name 'BpmCore-brunobb.540' message '' id '19584c09-f835-418f-a931-17d28d5a9480' date '08/28/2019' time '09:06:06' author 'brunobb' ancestors ((name 'BpmCore-brunobb.539' message '' id '944eb575-38ae-466e-a99a-6693ad04b741' date '08/27/2019' time '09:38:58' author 'brunobb' ancestors ((name 'BpmCore-brunobb.538' message '' id 'a07e8489-d475-43ee-ba61-be7b4b0a21d9' date '08/26/2019' time '12:01:10' author 'brunobb' ancestors ((name 'BpmCore-brunobb.537' message '' id 'c030f7c1-4f40-4331-8f8d-b7d7ada7732c' date '08/26/2019' time '08:47:56' author 'brunobb' ancestors ((name 'BpmCore-brunobb.536' message '' id '71071272-647f-47fe-b580-a78ec28b4534' date '08/23/2019' time '13:32:25' author 'brunobb' ancestors ((name 'BpmCore-brunobb.535' message '' id 'd2408fb0-ecd8-4f3c-b874-736c98b07fa5' date '08/22/2019' time '13:23:37' author 'brunobb' ancestors ((name 'BpmCore-brunobb.534' message '' id 'fecaec6b-d81d-40ca-aca1-246138504d61' date '08/21/2019' time '11:59:38' author 'brunobb' ancestors ((name 'BpmCore-brunobb.533' message '' id 'd3fad6d9-682c-4b1a-9163-c40d44e5e336' date '08/21/2019' time '11:47:38' author 'brunobb' ancestors ((name 'BpmCore-brunobb.532' message '' id 'e8f7935a-0f94-4bd1-9387-51c18c3310f0' date '08/20/2019' time '11:06:03' author 'brunobb' ancestors ((name 'BpmCore-brunobb.531' message '' id '7669cc52-66e0-4e1b-9c10-59c9decdfb15' date '08/20/2019' time '04:41:30' author 'brunobb' ancestors ((name 'BpmCore-brunobb.530' message '' id '2faf0987-25a3-4ab1-8cb1-1e028ba7feab' date '08/19/2019' time '10:21:05' author 'brunobb' ancestors ((name 'BpmCore-brunobb.529' message '' id 'a325ad96-c8a4-4573-83da-54f8a50695cf' date '08/19/2019' time '09:32:18' author 'brunobb' ancestors ((name 'BpmCore-brunobb.528' message '' id '210bcf6c-6b0f-4510-97fd-709545eb0d32' date '08/16/2019' time '11:49:25' author 'brunobb' ancestors ((name 'BpmCore-brunobb.527' message '' id '895249cf-5250-44f4-856d-bea379ce113d' date '08/15/2019' time '13:20:35' author 'brunobb' ancestors ((name 'BpmCore-brunobb.526' message '' id 'd0a34af0-2405-4cd1-bff6-9000b7477ff1' date '08/14/2019' time '13:02:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.525' message '' id 'f7bbec4b-9fd5-4f6a-b484-8f5e4eb660bc' date '08/14/2019' time '13:01:18' author 'brunobb' ancestors ((name 'BpmCore-brunobb.524' message '' id '0bcff75b-978a-4d75-8b98-88d6df18eaa7' date '08/14/2019' time '11:39:29' author 'brunobb' ancestors ((name 'BpmCore-brunobb.523' message '' id '3bfc46d0-3bac-4907-8000-78e49bac365e' date '08/12/2019' time '09:36:32' author 'brunobb' ancestors ((name 'BpmCore-brunobb.522' message '' id 'adac8647-1e59-4240-8f46-a7a77b7e278c' date '08/06/2019' time '11:51:57' author 'brunobb' ancestors ((name 'BpmCore-brunobb.521' message '' id 'f09c2064-b2ce-4887-b795-a45b3544d111' date '08/05/2019' time '13:29:26' author 'brunobb' ancestors ((name 'BpmCore-brunobb.520' message '' id 'f8dbd6e0-2161-4501-98df-37bf89f1318a' date '08/05/2019' time '13:05:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.519' message '' id '03cda569-2089-4bb9-987e-76c70091bdc7' date '08/02/2019' time '08:12:20' author 'brunobb' ancestors ((name 'BpmCore-brunobb.518' message '' id 'db371d84-4ad2-4afa-9656-4e31e1dc7665' date '08/01/2019' time '11:49:46' author 'brunobb' ancestors ((name 'BpmCore-brunobb.517' message '' id '94282589-e660-455d-aea7-3ce92188c286' date '07/30/2019' time '12:01:48' author 'brunobb' ancestors ((name 'BpmCore-brunobb.516' message '' id 'e59d85cd-40ce-4130-ba25-ad4ff3303b40' date '07/30/2019' time '11:02:01' author 'brunobb' ancestors ((name 'BpmCore-brunobb.515' message '' id 'bafdf76a-b6e6-4ab9-946d-74b00bda2b51' date '07/29/2019' time '12:51:09' author 'brunobb' ancestors ((name 'BpmCore-brunobb.514' message '' id '290f7f30-3de4-4957-88dc-433ccc4e3932' date '07/01/2019' time '12:48:30' author 'brunobb' ancestors ((name 'BpmCore-brunobb.513' message '' id '8fd2dc4c-dada-4721-b891-ac6f7bab1fe9' date '06/24/2019' time '12:39:31' author 'brunobb' ancestors ((name 'BpmCore-brunobb.512' message '' id '68b1b822-a149-47e9-a705-a936f9797752' date '06/21/2019' time '11:09:10' author 'brunobb' ancestors ((name 'BpmCore-brunobb.511' message '' id 'fd7d43e3-57e8-4d29-b6af-85a7f2be094e' date '06/03/2019' time '12:19:40' author 'brunobb' ancestors ((name 'BpmCore-brunobb.510' message '' id '24d6710f-2624-4e26-abd8-2594b6d3c3b6' date '05/28/2019' time '08:40:29' author 'brunobb' ancestors ((name 'BpmCore-brunobb.509' message '' id '91fe0b36-5427-4c9e-8b9f-dd8e08c534bd' date '05/28/2019' time '05:00:48' author 'brunobb' ancestors ((name 'BpmCore-brunobb.508' message '' id '1e244766-3c8a-45f2-9f3c-73f8a2f05aee' date '05/27/2019' time '13:41:37' author 'brunobb' ancestors ((name 'BpmCore-brunobb.507' message '' id '4349b13c-8d2d-4abc-9402-42c75b3c2159' date '05/27/2019' time '12:52:09' author 'brunobb' ancestors ((name 'BpmCore-brunobb.506' message '' id 'dc21d306-8722-4a69-8140-e6137ebd23b8' date '05/24/2019' time '12:40:26' author 'brunobb' ancestors ((name 'BpmCore-brunobb.505' message '' id '5d60bf37-d2cf-4e8e-932e-2e8a51538e2c' date '05/23/2019' time '08:38:06' author 'brunobb' ancestors ((name 'BpmCore-brunobb.504' message '' id 'e6d02f28-f0ba-4f5f-aff2-9c557d35bedb' date '05/23/2019' time '03:30:36' author 'brunobb' ancestors ((name 'BpmCore-brunobb.502' message '' id '16121d01-46af-40ba-bae3-04de8e515b03' date '05/22/2019' time '10:47:57' author 'brunobb' ancestors ((name 'BpmCore-brunobb.501' message '' id '614e7844-c9bd-4ca6-bc90-e3853f825a5e' date '05/15/2019' time '12:22:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.500' message '' id 'c35e7dee-5298-47c0-80bf-da0dc8c6310c' date '05/13/2019' time '12:32:16' author 'brunobb' ancestors ((name 'BpmCore-brunobb.499' message '' id '3d74e48d-6908-42f7-946b-7b1ea7895325' date '05/09/2019' time '06:08:18' author 'brunobb' ancestors ((name 'BpmCore-brunobb.498' message '' id '77d9af5c-24d4-4e7a-95b8-e87af686df25' date '05/08/2019' time '12:17:17' author 'brunobb' ancestors ((name 'BpmCore-brunobb.497' message '' id '23af3864-2a77-4d05-81be-b09bdcaf0fd7' date '04/29/2019' time '10:56:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.496' message '' id '08c6f981-a16c-4580-95b8-e8deeb651588' date '04/29/2019' time '10:06:20' author 'brunobb' ancestors ((name 'BpmCore-brunobb.495' message '' id 'ea0fb5eb-e402-4769-94fa-a4be87c88032' date '03/26/2019' time '03:16:09' author 'brunobb' ancestors ((name 'BpmCore-brunobb.494' message '' id 'f548bd7b-2319-4fde-add3-56a01a4e5dc0' date '03/25/2019' time '09:39:58' author 'brunobb' ancestors ((name 'BpmCore-brunobb.493' message '' id '0f3ec898-de5a-4331-ae87-3546bd8784da' date '03/25/2019' time '09:34:45' author 'brunobb' ancestors ((name 'BpmCore-brunobb.492' message '' id '25c1fe28-001e-47a8-99ff-72ce94f8b17d' date '03/25/2019' time '09:13:53' author 'brunobb' ancestors ((name 'BpmCore-brunobb.491' message '' id 'f00a240a-0ccb-451b-a0b4-f46093e1ed56' date '03/25/2019' time '08:51:48' author 'brunobb' ancestors ((name 'BpmCore-brunobb.490' message '' id '01a352eb-6fd5-4431-800c-1efb0e44dbf1' date '03/25/2019' time '08:26:09' author 'brunobb' ancestors ((name 'BpmCore-brunobb.489' message '' id 'b42d9f43-a388-4226-9fe6-f405d45cc75a' date '03/25/2019' time '08:21:29' author 'brunobb' ancestors ((name 'BpmCore-brunobb.488' message '' id '74247ac1-58fd-4d4a-8abd-ef9ca7e3288c' date '03/25/2019' time '08:16:17' author 'brunobb' ancestors ((name 'BpmCore-brunobb.487' message '' id '8a12929f-1f87-4813-ab21-92b7bbb4a0ca' date '03/25/2019' time '08:12:54' author 'brunobb' ancestors ((name 'BpmCore-brunobb.486' message '' id '9d16d633-f2af-4ea8-8e91-249debfb707c' date '03/25/2019' time '08:09:01' author 'brunobb' ancestors ((name 'BpmCore-brunobb.485' message '' id '4cfcf916-1b7b-48d6-94fd-f44e41f11855' date '03/25/2019' time '08:03:23' author 'brunobb' ancestors ((name 'BpmCore-brunobb.484' message '' id '612dceb6-6261-465d-9451-5ec7bfe9ff2e' date '03/25/2019' time '07:51:01' author 'brunobb' ancestors ((name 'BpmCore-brunobb.483' message '' id '0e2fa427-5246-4ffd-a138-6ad932300ce3' date '03/22/2019' time '11:53:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.482' message '' id 'e02dba0f-ab32-4187-be3a-8ff317dc445d' date '03/14/2019' time '03:40:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.481' message '' id 'f5babd18-60ab-4c64-8119-5ccc3e26e6fd' date '03/14/2019' time '02:57:57' author 'brunobb' ancestors ((name 'BpmCore-brunobb.480' message '' id 'a27f2029-3571-473d-ab75-6d3e352d0933' date '02/22/2019' time '10:01:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.479' message '' id '81c89b0b-92bb-4c22-be4a-6509d9feae77' date '02/15/2019' time '07:08:39' author 'brunobb' ancestors ((name 'BpmCore-brunobb.478' message '' id '7bdedf0d-b887-46b9-9d77-07c202cbb3e1' date '02/11/2019' time '11:16:45' author 'brunobb' ancestors ((name 'BpmCore-brunobb.477' message '' id '6a881c0b-f41b-4e33-bd60-9cb43d1f0a54' date '02/07/2019' time '06:51:59' author 'brunobb' ancestors ((name 'BpmCore-brunobb.476' message '' id '8c17d006-cd77-46df-a0e0-2153e84b4845' date '02/05/2019' time '08:49:11' author 'brunobb' ancestors ((name 'BpmCore-brunobb.475' message '' id 'bc0cb649-aa4a-4d86-b0e9-fc0c8687c413' date '02/05/2019' time '08:39:30' author 'brunobb' ancestors ((name 'BpmCore-brunobb.474' message '' id 'd3ee7c4d-f2f8-47c1-b8cb-40108160ebcf' date '02/04/2019' time '06:37:52' author 'brunobb' ancestors ((name 'BpmCore-brunobb.473' message '' id 'd3339e76-46c3-40df-af9d-37e68905ed7e' date '02/01/2019' time '09:25:05' author 'brunobb' ancestors ((name 'BpmCore-brunobb.472' message '' id '7938713e-a39f-418b-aebf-91b6c92de6cf' date '01/31/2019' time '07:54:19' author 'brunobb' ancestors ((name 'BpmCore-brunobb.471' message '' id 'db76117b-769b-485b-984b-e0cf7743bc70' date '01/31/2019' time '07:33:42' author 'brunobb' ancestors ((name 'BpmCore-brunobb.470' message '' id '6747367b-476d-464e-85c5-fc5df674e84f' date '01/21/2019' time '11:40:20' author 'brunobb' ancestors ((name 'BpmCore-brunobb.469' message '' id '530433f4-506b-41ec-b609-6b830e672a5d' date '01/21/2019' time '10:31:33' author 'brunobb' ancestors ((name 'BpmCore-brunobb.468' message '' id 'df4f731f-d219-42ff-8472-00fa4cf15e26' date '01/21/2019' time '10:26:39' author 'brunobb' ancestors ((name 'BpmCore-brunobb.467' message '' id 'ec2820f0-9b23-46f9-ab0b-8824d43a3044' date '01/21/2019' time '09:42:10' author 'brunobb' ancestors ((name 'BpmCore-brunobb.466' message '' id '203efce6-c89e-486e-b445-8543c92a6fa9' date '01/21/2019' time '08:34:17' author 'brunobb' ancestors ((name 'BpmCore-brunobb.465' message '' id '64fb9916-62b4-403b-9fc5-4a4bc25c2122' date '01/21/2019' time '07:38:23' author 'brunobb' ancestors ((name 'BpmCore-brunobb.464' message '' id '8ad3e5a2-7800-46f2-b52f-d47cdb45a0fb' date '01/21/2019' time '05:01:51' author 'brunobb' ancestors ((name 'BpmCore-brunobb.463' message '' id 'b0ee9c18-983e-4dc6-868f-8aca6b782708' date '01/20/2019' time '14:41:53' author 'brunobb' ancestors ((name 'BpmCore-brunobb.462' message '' id '9776bbf5-4adf-488d-90f6-c71bc9f6d165' date '01/20/2019' time '14:28:08' author 'brunobb' ancestors ((name 'BpmCore-brunobb.461' message '' id '48f75efb-330e-4596-ba4b-7e8ba06e2c17' date '01/20/2019' time '09:45:46' author 'brunobb' ancestors ((name 'BpmCore-brunobb.460' message '' id 'cdf42cbe-4954-4a93-a79c-ff0de3d707d3' date '01/20/2019' time '09:27:41' author 'brunobb' ancestors ((name 'BpmCore-brunobb.459' message '' id '213d7680-0f80-44ae-94bc-3248f561d645' date '01/20/2019' time '09:00:29' author 'brunobb' ancestors ((name 'BpmCore-brunobb.457' message '' id '3ca8c0dc-5cfc-4054-a1ce-409f6fceed56' date '01/16/2019' time '09:39:20' author 'brunobb' ancestors ((name 'BpmCore-brunobb.456' message '' id 'd313b192-0e5c-4ca5-8ec4-f7074d21f739' date '12/27/2018' time '08:41:47' author 'brunobb' ancestors ((name 'BpmCore-brunobb.455' message '' id '1413b061-1ea4-4ad4-bd0c-3151d94cf25f' date '12/26/2018' time '04:40:17' author 'brunobb' ancestors ((name 'BpmCore-brunobb.454' message '' id 'aa2c5476-cf1e-410d-92a8-a938f6a7629c' date '12/18/2018' time '11:41:41' author 'brunobb' ancestors ((name 'BpmCore-brunobb.453' message '' id 'f6083573-c4ac-4bda-8ef7-c1e6f5d76aab' date '12/18/2018' time '08:55:10' author 'brunobb' ancestors ((name 'BpmCore-brunobb.452' message '' id '63c9716c-970f-486a-8c8d-e4bfecf06930' date '12/18/2018' time '08:10:33' author 'brunobb' ancestors ((name 'BpmCore-brunobb.451' message '' id '22e2c3ca-cb62-4f67-87ad-b7b531b24120' date '12/18/2018' time '02:05:06' author 'brunobb' ancestors ((name 'BpmCore-brunobb.450' message '' id '0eb6d5f0-bf72-4110-953b-7936249950cb' date '12/17/2018' time '11:53:21' author 'brunobb' ancestors ((name 'BpmCore-brunobb.449' message '' id '2623ef71-2462-4f5e-812c-4d85a5e85235' date '12/17/2018' time '10:03:04' author 'brunobb' ancestors ((name 'BpmCore-brunobb.448' message '' id 'fab1d1cc-0e3b-4ebc-9290-01ead707840c' date '12/17/2018' time '09:23:32' author 'brunobb' ancestors ((name 'BpmCore-brunobb.447' message '' id 'ec953e26-3f15-4f86-8532-464720c8a0a6' date '12/17/2018' time '08:07:06' author 'brunobb' ancestors ((name 'BpmCore-brunobb.446' message '' id '7b9b3e69-2f84-476d-8aad-02c1ee77b9cb' date '12/17/2018' time '08:02:03' author 'brunobb' ancestors ((name 'BpmCore-brunobb.445' message '' id 'b1827446-04ad-4dd9-b76b-0394ac00b5c7' date '12/17/2018' time '04:27:54' author 'brunobb' ancestors ((name 'BpmCore-brunobb.444' message '' id '5929b5e1-e92b-4f97-a676-38fbcd455406' date '12/14/2018' time '11:31:30' author 'brunobb' ancestors ((name 'BpmCore-brunobb.443' message '' id '71929adf-f553-49b5-9eb1-285c012c177e' date '12/14/2018' time '10:03:12' author 'brunobb' ancestors ((name 'BpmCore-brunobb.442' message '' id 'acaef2c3-9c64-4217-a5b1-90786fb39ced' date '12/14/2018' time '09:21:49' author 'brunobb' ancestors ((name 'BpmCore-brunobb.441' message '' id 'd1179260-eb86-4611-ac5b-9a3c05260133' date '12/13/2018' time '09:13:14' author 'brunobb' ancestors ((name 'BpmCore-brunobb.440' message '' id 'cb5a761b-50d4-4d4a-9a4e-f4d1bf7b81d6' date '12/12/2018' time '10:52:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.439' message '' id 'e048476f-af67-4c0d-9ae5-4d8f5316237b' date '12/10/2018' time '12:14:11' author 'brunobb' ancestors ((name 'BpmCore-brunobb.438' message '' id 'e068a5c7-18f4-4be0-ae59-36d959347a01' date '12/04/2018' time '09:17:19' author 'brunobb' ancestors ((name 'BpmCore-brunobb.437' message '' id 'f8cb86f9-cc66-402f-8c36-2dd6de2259ad' date '12/04/2018' time '09:07:16' author 'brunobb' ancestors ((name 'BpmCore-brunobb.436' message '' id 'fd2d6841-a385-4cbb-a403-357b1719b10b' date '12/04/2018' time '08:16:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.435' message '' id 'd7333c72-c600-4512-a329-14d548bb24a7' date '12/04/2018' time '07:48:14' author 'brunobb' ancestors ((name 'BpmCore-brunobb.434' message '' id '2abd25c0-1b81-4571-8397-2f927ad76a71' date '12/04/2018' time '06:54:53' author 'brunobb' ancestors ((name 'BpmCore-brunobb.433' message '' id '0ef26838-a59b-4778-942b-fc14742a6a35' date '11/30/2018' time '04:43:45' author 'brunobb' ancestors ((name 'BpmCore-brunobb.432' message '' id '3c860b14-8ddb-46ef-8884-3bdcfc74f45f' date '11/28/2018' time '08:33:17' author 'brunobb' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file +(name 'BpmCore-brunobb.563' message '' id 'e60326a8-234d-4c8a-aeb5-1e2e2a61201a' date '10/11/2019' time '07:04:38' author 'brunobb' ancestors ((name 'BpmCore-brunobb.562' message '' id '4a169ec1-c72a-4431-a87a-55bcf7073862' date '10/10/2019' time '04:45:18' author 'brunobb' ancestors ((name 'BpmCore-brunobb.561' message '' id 'c1babf12-e35f-4743-96de-d2cde40ec3a8' date '10/09/2019' time '13:17:15' author 'brunobb' ancestors ((name 'BpmCore-brunobb.560' message '' id '17f41e73-920b-47e2-b899-4760c651682e' date '10/09/2019' time '12:27:27' author 'brunobb' ancestors ((name 'BpmCore-brunobb.559' message '' id 'c8f63abd-8615-485c-813a-e038729b4f10' date '10/04/2019' time '11:17:39' author 'brunobb' ancestors ((name 'BpmCore-brunobb.558' message '' id 'd2ec2d41-49ad-4170-b35c-3a75b3d01b8d' date '09/30/2019' time '12:36:33' author 'brunobb' ancestors ((name 'BpmCore-brunobb.557' message '' id '0a0ca653-11a3-4d46-8853-da6f8301158a' date '09/26/2019' time '03:51:00' author 'brunobb' ancestors ((name 'BpmCore-brunobb.556' message '' id '91090957-0096-433f-8b7c-4c3b4e0370ad' date '09/26/2019' time '03:02:59' author 'brunobb' ancestors ((name 'BpmCore-brunobb.555' message '' id '9418a5f0-6cc5-4d17-b40f-30fe189dab80' date '09/26/2019' time '02:21:59' author 'brunobb' ancestors ((name 'BpmCore-brunobb.554' message '' id '593623c4-465f-4b89-8815-492056832894' date '09/25/2019' time '12:48:50' author 'brunobb' ancestors ((name 'BpmCore-brunobb.553' message '' id '8cfb360d-0bd9-4372-8882-71263ce1b86a' date '09/25/2019' time '12:39:00' author 'brunobb' ancestors ((name 'BpmCore-brunobb.552' message '' id 'eed2b4b7-c7b3-488e-b746-81fbeef26135' date '09/25/2019' time '11:44:40' author 'brunobb' ancestors ((name 'BpmCore-brunobb.551' message '' id 'b5e2a8c3-d004-42f1-af6c-08e28fe6190a' date '09/25/2019' time '11:18:12' author 'brunobb' ancestors ((name 'BpmCore-brunobb.550' message '' id '249a445f-f194-4e24-b8c9-1979a5416977' date '09/23/2019' time '09:08:19' author 'brunobb' ancestors ((name 'BpmCore-brunobb.549' message '' id '6b9b7bb3-5826-425e-a089-3254d8794f48' date '09/23/2019' time '09:02:54' author 'brunobb' ancestors ((name 'BpmCore-brunobb.548' message '' id '7d7181d1-1d07-4257-9c64-91a5b46ca05c' date '09/20/2019' time '11:02:23' author 'brunobb' ancestors ((name 'BpmCore-brunobb.547' message '' id '813c056c-9368-42b6-8171-860674529539' date '09/20/2019' time '08:44:28' author 'brunobb' ancestors ((name 'BpmCore-brunobb.546' message '' id '63af3174-7552-4f78-bc77-e92ae46b62ce' date '09/20/2019' time '07:53:40' author 'brunobb' ancestors ((name 'BpmCore-brunobb.545' message '' id '67d1f597-35e4-47fd-ab9b-942dca8c0e7d' date '09/19/2019' time '10:23:35' author 'brunobb' ancestors ((name 'BpmCore-brunobb.544' message '' id 'ffab5943-dcd1-4574-9b01-eb02f96cb5fe' date '09/19/2019' time '08:53:04' author 'brunobb' ancestors ((name 'BpmCore-brunobb.543' message '' id 'a0b7f492-f5ee-421f-ad35-053ce936b0ec' date '09/18/2019' time '13:11:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.542' message '' id '5ea6b1b5-8ade-44b9-ba7a-bb6ef74ad26f' date '08/29/2019' time '10:56:27' author 'brunobb' ancestors ((name 'BpmCore-brunobb.541' message '' id '84f2c504-4197-4558-8492-2cdb48a352fa' date '08/28/2019' time '10:00:24' author 'brunobb' ancestors ((name 'BpmCore-brunobb.540' message '' id '19584c09-f835-418f-a931-17d28d5a9480' date '08/28/2019' time '09:06:06' author 'brunobb' ancestors ((name 'BpmCore-brunobb.539' message '' id '944eb575-38ae-466e-a99a-6693ad04b741' date '08/27/2019' time '09:38:58' author 'brunobb' ancestors ((name 'BpmCore-brunobb.538' message '' id 'a07e8489-d475-43ee-ba61-be7b4b0a21d9' date '08/26/2019' time '12:01:10' author 'brunobb' ancestors ((name 'BpmCore-brunobb.537' message '' id 'c030f7c1-4f40-4331-8f8d-b7d7ada7732c' date '08/26/2019' time '08:47:56' author 'brunobb' ancestors ((name 'BpmCore-brunobb.536' message '' id '71071272-647f-47fe-b580-a78ec28b4534' date '08/23/2019' time '13:32:25' author 'brunobb' ancestors ((name 'BpmCore-brunobb.535' message '' id 'd2408fb0-ecd8-4f3c-b874-736c98b07fa5' date '08/22/2019' time '13:23:37' author 'brunobb' ancestors ((name 'BpmCore-brunobb.534' message '' id 'fecaec6b-d81d-40ca-aca1-246138504d61' date '08/21/2019' time '11:59:38' author 'brunobb' ancestors ((name 'BpmCore-brunobb.533' message '' id 'd3fad6d9-682c-4b1a-9163-c40d44e5e336' date '08/21/2019' time '11:47:38' author 'brunobb' ancestors ((name 'BpmCore-brunobb.532' message '' id 'e8f7935a-0f94-4bd1-9387-51c18c3310f0' date '08/20/2019' time '11:06:03' author 'brunobb' ancestors ((name 'BpmCore-brunobb.531' message '' id '7669cc52-66e0-4e1b-9c10-59c9decdfb15' date '08/20/2019' time '04:41:30' author 'brunobb' ancestors ((name 'BpmCore-brunobb.530' message '' id '2faf0987-25a3-4ab1-8cb1-1e028ba7feab' date '08/19/2019' time '10:21:05' author 'brunobb' ancestors ((name 'BpmCore-brunobb.529' message '' id 'a325ad96-c8a4-4573-83da-54f8a50695cf' date '08/19/2019' time '09:32:18' author 'brunobb' ancestors ((name 'BpmCore-brunobb.528' message '' id '210bcf6c-6b0f-4510-97fd-709545eb0d32' date '08/16/2019' time '11:49:25' author 'brunobb' ancestors ((name 'BpmCore-brunobb.527' message '' id '895249cf-5250-44f4-856d-bea379ce113d' date '08/15/2019' time '13:20:35' author 'brunobb' ancestors ((name 'BpmCore-brunobb.526' message '' id 'd0a34af0-2405-4cd1-bff6-9000b7477ff1' date '08/14/2019' time '13:02:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.525' message '' id 'f7bbec4b-9fd5-4f6a-b484-8f5e4eb660bc' date '08/14/2019' time '13:01:18' author 'brunobb' ancestors ((name 'BpmCore-brunobb.524' message '' id '0bcff75b-978a-4d75-8b98-88d6df18eaa7' date '08/14/2019' time '11:39:29' author 'brunobb' ancestors ((name 'BpmCore-brunobb.523' message '' id '3bfc46d0-3bac-4907-8000-78e49bac365e' date '08/12/2019' time '09:36:32' author 'brunobb' ancestors ((name 'BpmCore-brunobb.522' message '' id 'adac8647-1e59-4240-8f46-a7a77b7e278c' date '08/06/2019' time '11:51:57' author 'brunobb' ancestors ((name 'BpmCore-brunobb.521' message '' id 'f09c2064-b2ce-4887-b795-a45b3544d111' date '08/05/2019' time '13:29:26' author 'brunobb' ancestors ((name 'BpmCore-brunobb.520' message '' id 'f8dbd6e0-2161-4501-98df-37bf89f1318a' date '08/05/2019' time '13:05:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.519' message '' id '03cda569-2089-4bb9-987e-76c70091bdc7' date '08/02/2019' time '08:12:20' author 'brunobb' ancestors ((name 'BpmCore-brunobb.518' message '' id 'db371d84-4ad2-4afa-9656-4e31e1dc7665' date '08/01/2019' time '11:49:46' author 'brunobb' ancestors ((name 'BpmCore-brunobb.517' message '' id '94282589-e660-455d-aea7-3ce92188c286' date '07/30/2019' time '12:01:48' author 'brunobb' ancestors ((name 'BpmCore-brunobb.516' message '' id 'e59d85cd-40ce-4130-ba25-ad4ff3303b40' date '07/30/2019' time '11:02:01' author 'brunobb' ancestors ((name 'BpmCore-brunobb.515' message '' id 'bafdf76a-b6e6-4ab9-946d-74b00bda2b51' date '07/29/2019' time '12:51:09' author 'brunobb' ancestors ((name 'BpmCore-brunobb.514' message '' id '290f7f30-3de4-4957-88dc-433ccc4e3932' date '07/01/2019' time '12:48:30' author 'brunobb' ancestors ((name 'BpmCore-brunobb.513' message '' id '8fd2dc4c-dada-4721-b891-ac6f7bab1fe9' date '06/24/2019' time '12:39:31' author 'brunobb' ancestors ((name 'BpmCore-brunobb.512' message '' id '68b1b822-a149-47e9-a705-a936f9797752' date '06/21/2019' time '11:09:10' author 'brunobb' ancestors ((name 'BpmCore-brunobb.511' message '' id 'fd7d43e3-57e8-4d29-b6af-85a7f2be094e' date '06/03/2019' time '12:19:40' author 'brunobb' ancestors ((name 'BpmCore-brunobb.510' message '' id '24d6710f-2624-4e26-abd8-2594b6d3c3b6' date '05/28/2019' time '08:40:29' author 'brunobb' ancestors ((name 'BpmCore-brunobb.509' message '' id '91fe0b36-5427-4c9e-8b9f-dd8e08c534bd' date '05/28/2019' time '05:00:48' author 'brunobb' ancestors ((name 'BpmCore-brunobb.508' message '' id '1e244766-3c8a-45f2-9f3c-73f8a2f05aee' date '05/27/2019' time '13:41:37' author 'brunobb' ancestors ((name 'BpmCore-brunobb.507' message '' id '4349b13c-8d2d-4abc-9402-42c75b3c2159' date '05/27/2019' time '12:52:09' author 'brunobb' ancestors ((name 'BpmCore-brunobb.506' message '' id 'dc21d306-8722-4a69-8140-e6137ebd23b8' date '05/24/2019' time '12:40:26' author 'brunobb' ancestors ((name 'BpmCore-brunobb.505' message '' id '5d60bf37-d2cf-4e8e-932e-2e8a51538e2c' date '05/23/2019' time '08:38:06' author 'brunobb' ancestors ((name 'BpmCore-brunobb.504' message '' id 'e6d02f28-f0ba-4f5f-aff2-9c557d35bedb' date '05/23/2019' time '03:30:36' author 'brunobb' ancestors ((name 'BpmCore-brunobb.502' message '' id '16121d01-46af-40ba-bae3-04de8e515b03' date '05/22/2019' time '10:47:57' author 'brunobb' ancestors ((name 'BpmCore-brunobb.501' message '' id '614e7844-c9bd-4ca6-bc90-e3853f825a5e' date '05/15/2019' time '12:22:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.500' message '' id 'c35e7dee-5298-47c0-80bf-da0dc8c6310c' date '05/13/2019' time '12:32:16' author 'brunobb' ancestors ((name 'BpmCore-brunobb.499' message '' id '3d74e48d-6908-42f7-946b-7b1ea7895325' date '05/09/2019' time '06:08:18' author 'brunobb' ancestors ((name 'BpmCore-brunobb.498' message '' id '77d9af5c-24d4-4e7a-95b8-e87af686df25' date '05/08/2019' time '12:17:17' author 'brunobb' ancestors ((name 'BpmCore-brunobb.497' message '' id '23af3864-2a77-4d05-81be-b09bdcaf0fd7' date '04/29/2019' time '10:56:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.496' message '' id '08c6f981-a16c-4580-95b8-e8deeb651588' date '04/29/2019' time '10:06:20' author 'brunobb' ancestors ((name 'BpmCore-brunobb.495' message '' id 'ea0fb5eb-e402-4769-94fa-a4be87c88032' date '03/26/2019' time '03:16:09' author 'brunobb' ancestors ((name 'BpmCore-brunobb.494' message '' id 'f548bd7b-2319-4fde-add3-56a01a4e5dc0' date '03/25/2019' time '09:39:58' author 'brunobb' ancestors ((name 'BpmCore-brunobb.493' message '' id '0f3ec898-de5a-4331-ae87-3546bd8784da' date '03/25/2019' time '09:34:45' author 'brunobb' ancestors ((name 'BpmCore-brunobb.492' message '' id '25c1fe28-001e-47a8-99ff-72ce94f8b17d' date '03/25/2019' time '09:13:53' author 'brunobb' ancestors ((name 'BpmCore-brunobb.491' message '' id 'f00a240a-0ccb-451b-a0b4-f46093e1ed56' date '03/25/2019' time '08:51:48' author 'brunobb' ancestors ((name 'BpmCore-brunobb.490' message '' id '01a352eb-6fd5-4431-800c-1efb0e44dbf1' date '03/25/2019' time '08:26:09' author 'brunobb' ancestors ((name 'BpmCore-brunobb.489' message '' id 'b42d9f43-a388-4226-9fe6-f405d45cc75a' date '03/25/2019' time '08:21:29' author 'brunobb' ancestors ((name 'BpmCore-brunobb.488' message '' id '74247ac1-58fd-4d4a-8abd-ef9ca7e3288c' date '03/25/2019' time '08:16:17' author 'brunobb' ancestors ((name 'BpmCore-brunobb.487' message '' id '8a12929f-1f87-4813-ab21-92b7bbb4a0ca' date '03/25/2019' time '08:12:54' author 'brunobb' ancestors ((name 'BpmCore-brunobb.486' message '' id '9d16d633-f2af-4ea8-8e91-249debfb707c' date '03/25/2019' time '08:09:01' author 'brunobb' ancestors ((name 'BpmCore-brunobb.485' message '' id '4cfcf916-1b7b-48d6-94fd-f44e41f11855' date '03/25/2019' time '08:03:23' author 'brunobb' ancestors ((name 'BpmCore-brunobb.484' message '' id '612dceb6-6261-465d-9451-5ec7bfe9ff2e' date '03/25/2019' time '07:51:01' author 'brunobb' ancestors ((name 'BpmCore-brunobb.483' message '' id '0e2fa427-5246-4ffd-a138-6ad932300ce3' date '03/22/2019' time '11:53:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.482' message '' id 'e02dba0f-ab32-4187-be3a-8ff317dc445d' date '03/14/2019' time '03:40:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.481' message '' id 'f5babd18-60ab-4c64-8119-5ccc3e26e6fd' date '03/14/2019' time '02:57:57' author 'brunobb' ancestors ((name 'BpmCore-brunobb.480' message '' id 'a27f2029-3571-473d-ab75-6d3e352d0933' date '02/22/2019' time '10:01:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.479' message '' id '81c89b0b-92bb-4c22-be4a-6509d9feae77' date '02/15/2019' time '07:08:39' author 'brunobb' ancestors ((name 'BpmCore-brunobb.478' message '' id '7bdedf0d-b887-46b9-9d77-07c202cbb3e1' date '02/11/2019' time '11:16:45' author 'brunobb' ancestors ((name 'BpmCore-brunobb.477' message '' id '6a881c0b-f41b-4e33-bd60-9cb43d1f0a54' date '02/07/2019' time '06:51:59' author 'brunobb' ancestors ((name 'BpmCore-brunobb.476' message '' id '8c17d006-cd77-46df-a0e0-2153e84b4845' date '02/05/2019' time '08:49:11' author 'brunobb' ancestors ((name 'BpmCore-brunobb.475' message '' id 'bc0cb649-aa4a-4d86-b0e9-fc0c8687c413' date '02/05/2019' time '08:39:30' author 'brunobb' ancestors ((name 'BpmCore-brunobb.474' message '' id 'd3ee7c4d-f2f8-47c1-b8cb-40108160ebcf' date '02/04/2019' time '06:37:52' author 'brunobb' ancestors ((name 'BpmCore-brunobb.473' message '' id 'd3339e76-46c3-40df-af9d-37e68905ed7e' date '02/01/2019' time '09:25:05' author 'brunobb' ancestors ((name 'BpmCore-brunobb.472' message '' id '7938713e-a39f-418b-aebf-91b6c92de6cf' date '01/31/2019' time '07:54:19' author 'brunobb' ancestors ((name 'BpmCore-brunobb.471' message '' id 'db76117b-769b-485b-984b-e0cf7743bc70' date '01/31/2019' time '07:33:42' author 'brunobb' ancestors ((name 'BpmCore-brunobb.470' message '' id '6747367b-476d-464e-85c5-fc5df674e84f' date '01/21/2019' time '11:40:20' author 'brunobb' ancestors ((name 'BpmCore-brunobb.469' message '' id '530433f4-506b-41ec-b609-6b830e672a5d' date '01/21/2019' time '10:31:33' author 'brunobb' ancestors ((name 'BpmCore-brunobb.468' message '' id 'df4f731f-d219-42ff-8472-00fa4cf15e26' date '01/21/2019' time '10:26:39' author 'brunobb' ancestors ((name 'BpmCore-brunobb.467' message '' id 'ec2820f0-9b23-46f9-ab0b-8824d43a3044' date '01/21/2019' time '09:42:10' author 'brunobb' ancestors ((name 'BpmCore-brunobb.466' message '' id '203efce6-c89e-486e-b445-8543c92a6fa9' date '01/21/2019' time '08:34:17' author 'brunobb' ancestors ((name 'BpmCore-brunobb.465' message '' id '64fb9916-62b4-403b-9fc5-4a4bc25c2122' date '01/21/2019' time '07:38:23' author 'brunobb' ancestors ((name 'BpmCore-brunobb.464' message '' id '8ad3e5a2-7800-46f2-b52f-d47cdb45a0fb' date '01/21/2019' time '05:01:51' author 'brunobb' ancestors ((name 'BpmCore-brunobb.463' message '' id 'b0ee9c18-983e-4dc6-868f-8aca6b782708' date '01/20/2019' time '14:41:53' author 'brunobb' ancestors ((name 'BpmCore-brunobb.462' message '' id '9776bbf5-4adf-488d-90f6-c71bc9f6d165' date '01/20/2019' time '14:28:08' author 'brunobb' ancestors ((name 'BpmCore-brunobb.461' message '' id '48f75efb-330e-4596-ba4b-7e8ba06e2c17' date '01/20/2019' time '09:45:46' author 'brunobb' ancestors ((name 'BpmCore-brunobb.460' message '' id 'cdf42cbe-4954-4a93-a79c-ff0de3d707d3' date '01/20/2019' time '09:27:41' author 'brunobb' ancestors ((name 'BpmCore-brunobb.459' message '' id '213d7680-0f80-44ae-94bc-3248f561d645' date '01/20/2019' time '09:00:29' author 'brunobb' ancestors ((name 'BpmCore-brunobb.457' message '' id '3ca8c0dc-5cfc-4054-a1ce-409f6fceed56' date '01/16/2019' time '09:39:20' author 'brunobb' ancestors ((name 'BpmCore-brunobb.456' message '' id 'd313b192-0e5c-4ca5-8ec4-f7074d21f739' date '12/27/2018' time '08:41:47' author 'brunobb' ancestors ((name 'BpmCore-brunobb.455' message '' id '1413b061-1ea4-4ad4-bd0c-3151d94cf25f' date '12/26/2018' time '04:40:17' author 'brunobb' ancestors ((name 'BpmCore-brunobb.454' message '' id 'aa2c5476-cf1e-410d-92a8-a938f6a7629c' date '12/18/2018' time '11:41:41' author 'brunobb' ancestors ((name 'BpmCore-brunobb.453' message '' id 'f6083573-c4ac-4bda-8ef7-c1e6f5d76aab' date '12/18/2018' time '08:55:10' author 'brunobb' ancestors ((name 'BpmCore-brunobb.452' message '' id '63c9716c-970f-486a-8c8d-e4bfecf06930' date '12/18/2018' time '08:10:33' author 'brunobb' ancestors ((name 'BpmCore-brunobb.451' message '' id '22e2c3ca-cb62-4f67-87ad-b7b531b24120' date '12/18/2018' time '02:05:06' author 'brunobb' ancestors ((name 'BpmCore-brunobb.450' message '' id '0eb6d5f0-bf72-4110-953b-7936249950cb' date '12/17/2018' time '11:53:21' author 'brunobb' ancestors ((name 'BpmCore-brunobb.449' message '' id '2623ef71-2462-4f5e-812c-4d85a5e85235' date '12/17/2018' time '10:03:04' author 'brunobb' ancestors ((name 'BpmCore-brunobb.448' message '' id 'fab1d1cc-0e3b-4ebc-9290-01ead707840c' date '12/17/2018' time '09:23:32' author 'brunobb' ancestors ((name 'BpmCore-brunobb.447' message '' id 'ec953e26-3f15-4f86-8532-464720c8a0a6' date '12/17/2018' time '08:07:06' author 'brunobb' ancestors ((name 'BpmCore-brunobb.446' message '' id '7b9b3e69-2f84-476d-8aad-02c1ee77b9cb' date '12/17/2018' time '08:02:03' author 'brunobb' ancestors ((name 'BpmCore-brunobb.445' message '' id 'b1827446-04ad-4dd9-b76b-0394ac00b5c7' date '12/17/2018' time '04:27:54' author 'brunobb' ancestors ((name 'BpmCore-brunobb.444' message '' id '5929b5e1-e92b-4f97-a676-38fbcd455406' date '12/14/2018' time '11:31:30' author 'brunobb' ancestors ((name 'BpmCore-brunobb.443' message '' id '71929adf-f553-49b5-9eb1-285c012c177e' date '12/14/2018' time '10:03:12' author 'brunobb' ancestors ((name 'BpmCore-brunobb.442' message '' id 'acaef2c3-9c64-4217-a5b1-90786fb39ced' date '12/14/2018' time '09:21:49' author 'brunobb' ancestors ((name 'BpmCore-brunobb.441' message '' id 'd1179260-eb86-4611-ac5b-9a3c05260133' date '12/13/2018' time '09:13:14' author 'brunobb' ancestors ((name 'BpmCore-brunobb.440' message '' id 'cb5a761b-50d4-4d4a-9a4e-f4d1bf7b81d6' date '12/12/2018' time '10:52:44' author 'brunobb' ancestors ((name 'BpmCore-brunobb.439' message '' id 'e048476f-af67-4c0d-9ae5-4d8f5316237b' date '12/10/2018' time '12:14:11' author 'brunobb' ancestors ((name 'BpmCore-brunobb.438' message '' id 'e068a5c7-18f4-4be0-ae59-36d959347a01' date '12/04/2018' time '09:17:19' author 'brunobb' ancestors ((name 'BpmCore-brunobb.437' message '' id 'f8cb86f9-cc66-402f-8c36-2dd6de2259ad' date '12/04/2018' time '09:07:16' author 'brunobb' ancestors ((name 'BpmCore-brunobb.436' message '' id 'fd2d6841-a385-4cbb-a403-357b1719b10b' date '12/04/2018' time '08:16:13' author 'brunobb' ancestors ((name 'BpmCore-brunobb.435' message '' id 'd7333c72-c600-4512-a329-14d548bb24a7' date '12/04/2018' time '07:48:14' author 'brunobb' ancestors ((name 'BpmCore-brunobb.434' message '' id '2abd25c0-1b81-4571-8397-2f927ad76a71' date '12/04/2018' time '06:54:53' author 'brunobb' ancestors ((name 'BpmCore-brunobb.433' message '' id '0ef26838-a59b-4778-942b-fc14742a6a35' date '11/30/2018' time '04:43:45' author 'brunobb' ancestors ((name 'BpmCore-brunobb.432' message '' id '3c860b14-8ddb-46ef-8884-3bdcfc74f45f' date '11/28/2018' time '08:33:17' author 'brunobb' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/BpmXpdl.package/BpmXpdlImportProcess.class/instance/getNumberOfProcesses.st b/repository/BpmXpdl.package/BpmXpdlImportProcess.class/instance/getNumberOfProcesses.st index d2bf83fb6..1e43d61e7 100644 --- a/repository/BpmXpdl.package/BpmXpdlImportProcess.class/instance/getNumberOfProcesses.st +++ b/repository/BpmXpdl.package/BpmXpdlImportProcess.class/instance/getNumberOfProcesses.st @@ -1,4 +1,4 @@ -import +mapping getNumberOfProcesses ^indexXpdlFileMapper size \ No newline at end of file diff --git a/repository/BpmXpdl.package/monticello.meta/version b/repository/BpmXpdl.package/monticello.meta/version index 8c4c869dd..f77fdb1be 100644 --- a/repository/BpmXpdl.package/monticello.meta/version +++ b/repository/BpmXpdl.package/monticello.meta/version @@ -1 +1 @@ -(name 'BpmXpdl-brunobb.143' message '' id 'c2c9285e-0ea2-4469-8363-d3fdeff14008' date '10/07/2019' time '13:16:04' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.142' message '' id 'd5c4ef60-9299-40fc-a664-28582a81d356' date '10/07/2019' time '13:09:34' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.141' message '' id '5c83c357-7d73-4312-9dfb-a08c09e030cf' date '10/02/2019' time '07:50:03' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.140' message '' id '329371e0-95e3-4503-9ac5-895c1a5d1bc2' date '10/01/2019' time '07:47:15' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.139' message '' id '9dac96e8-e4d7-49c3-8094-4de79f168124' date '10/01/2019' time '04:44:17' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.138' message '' id 'b519a353-02d4-4022-ab71-0f91c9ae3e26' date '10/01/2019' time '04:23:18' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.137' message '' id '491b0433-d34b-48bd-9d17-ac708a249678' date '10/01/2019' time '04:10:08' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.136' message '' id '2b823db7-0782-4173-9d1d-5a134adaf5ec' date '10/01/2019' time '03:10:19' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.135' message '' id '551b9f89-a95f-4c4b-83fa-e71657357027' date '09/30/2019' time '13:05:29' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.134' message '' id '9e22a9b6-443a-4453-a336-5890ff340ed4' date '09/30/2019' time '12:36:49' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.133' message '' id '7c4a61d2-581f-424d-b2ad-fb54a2c2bb07' date '09/30/2019' time '10:00:46' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.132' message '' id '7e92e707-1c72-48cc-b910-61aeec37fa95' date '09/30/2019' time '09:30:34' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.131' message '' id '1dcdaba5-b8b4-4bbe-84a3-89a7e5c223ef' date '09/30/2019' time '09:12:02' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.130' message '' id 'b1ad88b4-0975-4ca3-b7c6-033328d82074' date '09/27/2019' time '12:56:44' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.129' message '' id 'fa1e09ba-fd9d-4ead-82ce-07fa3a5833ea' date '09/27/2019' time '12:49:55' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.128' message '' id '35420cb7-1dc2-4b70-9132-16c487b7e831' date '09/27/2019' time '12:43:01' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.127' message '' id 'a03fd33c-fca0-4f19-bae1-227a79bcd4ee' date '09/27/2019' time '12:29:48' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.126' message '' id '07484979-aa28-4656-85ad-42f0ef2b63b1' date '09/27/2019' time '12:20:43' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.125' message '' id 'cbbda98c-74cb-4f05-9d3e-647bfa73f98b' date '09/27/2019' time '11:47:01' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.124' message '' id '3d838c3d-5107-4278-a935-10daef6680c8' date '09/27/2019' time '10:58:33' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.123' message '' id '6f5b5d45-9a51-4171-ab56-f8157cb95d0b' date '09/27/2019' time '09:14:42' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.122' message '' id '0274516a-881a-4e6f-83f6-e774ca54a6be' date '09/19/2019' time '12:08:32' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.121' message '' id '6d8b096c-defa-480b-85c3-1bb1cb23c2d1' date '09/18/2019' time '13:11:58' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.120' message '' id 'a7db3823-4ae4-4b84-bd7b-2f39270c5e38' date '08/28/2019' time '09:05:48' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.119' message '' id '0f6430c0-2f1f-4d49-b153-7f9e0eeea9ae' date '08/27/2019' time '03:39:13' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.118' message '' id '9abc4dae-1992-4bb3-93de-c6beb64ee804' date '08/20/2019' time '11:06:11' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.117' message '' id '0258a2ee-dc5f-4550-83c5-805a8ea669a0' date '08/12/2019' time '12:59:36' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.116' message '' id 'a0700fef-b5fc-47a8-97ef-048a4c3f993c' date '08/05/2019' time '11:15:46' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.115' message '' id 'e8536b1d-3d7d-488c-8a32-af271af65233' date '07/29/2019' time '12:52:08' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.114' message '' id '14cebb3a-3e47-4d79-9de6-ca2216e0c1ca' date '07/25/2019' time '13:29:59' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.113' message '' id '4847a21f-0713-45ac-bd9f-e841100b3d3c' date '06/21/2019' time '13:43:15' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.112' message '' id '3a0469c3-7b2b-4b56-a27a-8eed0642b46e' date '05/29/2019' time '11:51:40' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.111' message '' id 'bbb99055-fce1-400a-9eaf-df6007bbf2e3' date '05/21/2019' time '05:35:55' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.110' message '' id 'de13cf87-3ab1-4aa2-b23a-80b18286b679' date '05/16/2019' time '06:03:08' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.109' message '' id '297f5537-6215-4294-b118-b592cc40ae67' date '05/16/2019' time '05:36:02' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.108' message '' id 'bd79db32-260e-4cfc-b367-31eb82bb9a1b' date '05/15/2019' time '11:20:18' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.107' message '' id 'dc32f62e-f567-46eb-8893-ec29909b97a8' date '05/14/2019' time '02:35:26' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.106' message '' id '7eb0b4b5-1e1b-436f-8e67-4458367d3b92' date '03/25/2019' time '09:14:27' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.105' message '' id 'a7d79164-4b7c-4fda-856e-2a28bb27df34' date '03/25/2019' time '08:52:37' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.104' message '' id '26e02695-e2da-4e36-a4d4-894a49416030' date '03/25/2019' time '08:26:35' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.103' message '' id 'd41df2de-1318-41d0-9151-c49b9a54d76d' date '03/25/2019' time '08:04:10' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.102' message '' id 'c8a08f2e-4ada-4d5b-a560-3fb8f0917002' date '03/20/2019' time '12:23:41' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.101' message '' id '83fd8249-b5c5-4826-b14f-bd653223e656' date '03/14/2019' time '05:34:49' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.100' message '' id 'e6ea5c4d-3195-48be-a79d-f06ef15e2bda' date '03/14/2019' time '02:45:38' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.99' message '' id '12bf51f7-0c36-4014-97ea-3e1625bb718d' date '02/11/2019' time '11:18:47' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.98' message '' id '39110b31-d9a1-47d1-8e24-83cef1947c42' date '01/30/2019' time '10:31:42' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.97' message '' id '4bf23816-d0fb-41ce-9db5-09e93c096927' date '12/20/2018' time '03:52:43' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.96' message '' id '10666637-8dee-4484-a331-307df66ccb1f' date '12/18/2018' time '11:42:43' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.95' message '' id 'db906ebe-b783-4457-9126-e2ba9fe26bba' date '12/13/2018' time '08:55:54' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.94' message '' id '5525dcbd-79ea-4702-8dff-b7bba93b591a' date '12/13/2018' time '08:19:51' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.93' message '' id '4e518249-3485-4c1d-873d-87a97aeb9059' date '12/13/2018' time '07:37:11' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.92' message '' id '2f4d943f-9b9d-4739-8c21-9cc5aff5a950' date '12/13/2018' time '04:50:58' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.91' message '' id 'ad0b3df3-9f55-49a3-a2a6-e3db1b8ba600' date '12/13/2018' time '04:16:46' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.90' message '' id 'e33db24f-447d-47b0-9dec-d0b54cff7b6d' date '12/12/2018' time '10:51:33' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.89' message '' id '879d00bf-39cf-4213-8ea2-2f282fa939e2' date '12/12/2018' time '10:19:14' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.88' message '' id 'ef51bf98-e49e-4f44-b315-b88cedf78748' date '12/12/2018' time '09:33:17' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.87' message '' id 'a74919e1-21af-4db2-9a93-78c67923391b' date '12/12/2018' time '08:27:03' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.86' message '' id '3e917bd8-fb1c-4508-8cc4-aaeb34378f8b' date '12/12/2018' time '07:45:03' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.85' message '' id '32b75d98-80fb-49a1-8cf4-91c7e95f9460' date '12/10/2018' time '10:53:24' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.84' message '' id 'd1c0e6c4-1f96-4710-a9d2-841df6dbd374' date '11/29/2018' time '03:35:46' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.83' message '' id '44a561d1-faec-4e1c-89ce-0fe0a490bfe7' date '11/28/2018' time '08:39:38' author 'brunobb' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file +(name 'BpmXpdl-brunobb.144' message '' id '144b868b-af43-41c6-b83b-203270f17c4b' date '10/11/2019' time '07:04:09' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.143' message '' id 'c2c9285e-0ea2-4469-8363-d3fdeff14008' date '10/07/2019' time '13:16:04' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.142' message '' id 'd5c4ef60-9299-40fc-a664-28582a81d356' date '10/07/2019' time '13:09:34' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.141' message '' id '5c83c357-7d73-4312-9dfb-a08c09e030cf' date '10/02/2019' time '07:50:03' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.140' message '' id '329371e0-95e3-4503-9ac5-895c1a5d1bc2' date '10/01/2019' time '07:47:15' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.139' message '' id '9dac96e8-e4d7-49c3-8094-4de79f168124' date '10/01/2019' time '04:44:17' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.138' message '' id 'b519a353-02d4-4022-ab71-0f91c9ae3e26' date '10/01/2019' time '04:23:18' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.137' message '' id '491b0433-d34b-48bd-9d17-ac708a249678' date '10/01/2019' time '04:10:08' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.136' message '' id '2b823db7-0782-4173-9d1d-5a134adaf5ec' date '10/01/2019' time '03:10:19' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.135' message '' id '551b9f89-a95f-4c4b-83fa-e71657357027' date '09/30/2019' time '13:05:29' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.134' message '' id '9e22a9b6-443a-4453-a336-5890ff340ed4' date '09/30/2019' time '12:36:49' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.133' message '' id '7c4a61d2-581f-424d-b2ad-fb54a2c2bb07' date '09/30/2019' time '10:00:46' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.132' message '' id '7e92e707-1c72-48cc-b910-61aeec37fa95' date '09/30/2019' time '09:30:34' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.131' message '' id '1dcdaba5-b8b4-4bbe-84a3-89a7e5c223ef' date '09/30/2019' time '09:12:02' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.130' message '' id 'b1ad88b4-0975-4ca3-b7c6-033328d82074' date '09/27/2019' time '12:56:44' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.129' message '' id 'fa1e09ba-fd9d-4ead-82ce-07fa3a5833ea' date '09/27/2019' time '12:49:55' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.128' message '' id '35420cb7-1dc2-4b70-9132-16c487b7e831' date '09/27/2019' time '12:43:01' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.127' message '' id 'a03fd33c-fca0-4f19-bae1-227a79bcd4ee' date '09/27/2019' time '12:29:48' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.126' message '' id '07484979-aa28-4656-85ad-42f0ef2b63b1' date '09/27/2019' time '12:20:43' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.125' message '' id 'cbbda98c-74cb-4f05-9d3e-647bfa73f98b' date '09/27/2019' time '11:47:01' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.124' message '' id '3d838c3d-5107-4278-a935-10daef6680c8' date '09/27/2019' time '10:58:33' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.123' message '' id '6f5b5d45-9a51-4171-ab56-f8157cb95d0b' date '09/27/2019' time '09:14:42' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.122' message '' id '0274516a-881a-4e6f-83f6-e774ca54a6be' date '09/19/2019' time '12:08:32' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.121' message '' id '6d8b096c-defa-480b-85c3-1bb1cb23c2d1' date '09/18/2019' time '13:11:58' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.120' message '' id 'a7db3823-4ae4-4b84-bd7b-2f39270c5e38' date '08/28/2019' time '09:05:48' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.119' message '' id '0f6430c0-2f1f-4d49-b153-7f9e0eeea9ae' date '08/27/2019' time '03:39:13' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.118' message '' id '9abc4dae-1992-4bb3-93de-c6beb64ee804' date '08/20/2019' time '11:06:11' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.117' message '' id '0258a2ee-dc5f-4550-83c5-805a8ea669a0' date '08/12/2019' time '12:59:36' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.116' message '' id 'a0700fef-b5fc-47a8-97ef-048a4c3f993c' date '08/05/2019' time '11:15:46' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.115' message '' id 'e8536b1d-3d7d-488c-8a32-af271af65233' date '07/29/2019' time '12:52:08' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.114' message '' id '14cebb3a-3e47-4d79-9de6-ca2216e0c1ca' date '07/25/2019' time '13:29:59' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.113' message '' id '4847a21f-0713-45ac-bd9f-e841100b3d3c' date '06/21/2019' time '13:43:15' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.112' message '' id '3a0469c3-7b2b-4b56-a27a-8eed0642b46e' date '05/29/2019' time '11:51:40' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.111' message '' id 'bbb99055-fce1-400a-9eaf-df6007bbf2e3' date '05/21/2019' time '05:35:55' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.110' message '' id 'de13cf87-3ab1-4aa2-b23a-80b18286b679' date '05/16/2019' time '06:03:08' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.109' message '' id '297f5537-6215-4294-b118-b592cc40ae67' date '05/16/2019' time '05:36:02' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.108' message '' id 'bd79db32-260e-4cfc-b367-31eb82bb9a1b' date '05/15/2019' time '11:20:18' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.107' message '' id 'dc32f62e-f567-46eb-8893-ec29909b97a8' date '05/14/2019' time '02:35:26' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.106' message '' id '7eb0b4b5-1e1b-436f-8e67-4458367d3b92' date '03/25/2019' time '09:14:27' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.105' message '' id 'a7d79164-4b7c-4fda-856e-2a28bb27df34' date '03/25/2019' time '08:52:37' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.104' message '' id '26e02695-e2da-4e36-a4d4-894a49416030' date '03/25/2019' time '08:26:35' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.103' message '' id 'd41df2de-1318-41d0-9151-c49b9a54d76d' date '03/25/2019' time '08:04:10' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.102' message '' id 'c8a08f2e-4ada-4d5b-a560-3fb8f0917002' date '03/20/2019' time '12:23:41' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.101' message '' id '83fd8249-b5c5-4826-b14f-bd653223e656' date '03/14/2019' time '05:34:49' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.100' message '' id 'e6ea5c4d-3195-48be-a79d-f06ef15e2bda' date '03/14/2019' time '02:45:38' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.99' message '' id '12bf51f7-0c36-4014-97ea-3e1625bb718d' date '02/11/2019' time '11:18:47' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.98' message '' id '39110b31-d9a1-47d1-8e24-83cef1947c42' date '01/30/2019' time '10:31:42' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.97' message '' id '4bf23816-d0fb-41ce-9db5-09e93c096927' date '12/20/2018' time '03:52:43' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.96' message '' id '10666637-8dee-4484-a331-307df66ccb1f' date '12/18/2018' time '11:42:43' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.95' message '' id 'db906ebe-b783-4457-9126-e2ba9fe26bba' date '12/13/2018' time '08:55:54' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.94' message '' id '5525dcbd-79ea-4702-8dff-b7bba93b591a' date '12/13/2018' time '08:19:51' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.93' message '' id '4e518249-3485-4c1d-873d-87a97aeb9059' date '12/13/2018' time '07:37:11' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.92' message '' id '2f4d943f-9b9d-4739-8c21-9cc5aff5a950' date '12/13/2018' time '04:50:58' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.91' message '' id 'ad0b3df3-9f55-49a3-a2a6-e3db1b8ba600' date '12/13/2018' time '04:16:46' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.90' message '' id 'e33db24f-447d-47b0-9dec-d0b54cff7b6d' date '12/12/2018' time '10:51:33' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.89' message '' id '879d00bf-39cf-4213-8ea2-2f282fa939e2' date '12/12/2018' time '10:19:14' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.88' message '' id 'ef51bf98-e49e-4f44-b315-b88cedf78748' date '12/12/2018' time '09:33:17' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.87' message '' id 'a74919e1-21af-4db2-9a93-78c67923391b' date '12/12/2018' time '08:27:03' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.86' message '' id '3e917bd8-fb1c-4508-8cc4-aaeb34378f8b' date '12/12/2018' time '07:45:03' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.85' message '' id '32b75d98-80fb-49a1-8cf4-91c7e95f9460' date '12/10/2018' time '10:53:24' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.84' message '' id 'd1c0e6c4-1f96-4710-a9d2-841df6dbd374' date '11/29/2018' time '03:35:46' author 'brunobb' ancestors ((name 'BpmXpdl-brunobb.83' message '' id '44a561d1-faec-4e1c-89ce-0fe0a490bfe7' date '11/28/2018' time '08:39:38' author 'brunobb' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file