Avance de los features project y adicion de templates para la lectura de json en project

This commit is contained in:
Wendy Nestor
2014-05-05 09:06:34 -04:00
parent 8ca8d0f616
commit 4ce415fce9
8 changed files with 3455 additions and 11 deletions

View File

@@ -40,8 +40,11 @@ Scenario Outline: Create new Projects
Examples:
| Description | project_new_uid_number | project_template |
| Create a new process with sequencial derivation | 1 | process_template_v1.json |
| Create a new process with sequencial derivation | 2 | process_template_v2.json |
| Create a new process with evaluation derivation | 1 | process_template_evaluation.json |
| Create a new process with parallel derivation | 2 | process_template_parallel.json |
| Create a new process with parallel by evaluation derivation | 3 | process_template_parallel_por_evaluation.json |
| Create a new process with selection derivation | 4 | process_template_selection.json |
| Create a new process with sequencial derivation | 5 | process_template_sequencial.json |
@@ -248,7 +251,7 @@ Scenario Outline: Update the Projects and then check if the values had changed
]
}
"""
And that I want to update a resource with the key "new_uid" stored in session array as variable "project_new_uid_<project_new_uid_number>"
And that I want to update a resource with the key "new_uid" stored in session array as variable "project_new_uid_<project_new_uid_number>" in position 0
And I request "projects"
And the content type is "application/json"
Then the response status code should be 200
@@ -261,7 +264,7 @@ Scenario Outline: Update the Projects and then check if the values had changed
Scenario Outline: Get definition of a project
Given that I want to get a resource with the key "new_uid" stored in session array as variable "project_new_uid_<project_new_uid_number>"
Given that I want to get a resource with the key "new_uid" stored in session array as variable "project_new_uid_<project_new_uid_number>" in position 0
And I request "project"
Then the response status code should be 200
And the response charset is "UTF-8"
@@ -276,7 +279,7 @@ Scenario Outline: Get definition of a project
| 1 |
Scenario Outline: Delete a Project activity created previously in this script
Given that I want to delete a resource with the key "new_uid" stored in session array as variable "project_new_uid_<project_new_uid_number>"
Given that I want to delete a resource with the key "new_uid" stored in session array as variable "project_new_uid_<project_new_uid_number>" in position 0
And I request "projects"
And the content type is "application/json"
Then the response status code should be 200
@@ -287,6 +290,10 @@ Scenario Outline: Delete a Project activity created previously in this script
| project_new_uid_number |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
Scenario: Get a list of projects

View File

@@ -498,8 +498,9 @@ class RestContext extends BehatContext
*/
public function theResponseContentTypeIs($contentType)
{
if ($this->_contentType != $contentType) {
throw new Exception("Response Content Type was not $contentType\n\n");
throw new Exception("Response Content Type was not $contentType\n\n".$this->_response->getBody(true));
}
}
@@ -1161,7 +1162,11 @@ class RestContext extends BehatContext
if (!isset($sessionData->$sessionVarName) ) {
$varValue = '';
}elseif(!is_null($position)){
$varValue = $sessionData->$sessionVarName[$position];
foreach ($sessionData->$sessionVarName as $key => $value) {
if($key == $position){
$varValue = $value;
}
}
} else {
$varValue = $sessionData->$sessionVarName;
}
@@ -1172,7 +1177,7 @@ class RestContext extends BehatContext
/**
* @Given /^that I want to get a resource with the key "([^"]*)" stored in session array as variable "([^"]*)"$/
* @Given /^that I want to get a resource with the key "([^"]*)" stored in session array as variable "([^"]*)" in postion (\d+)$/
* @Given /^that I want to get a resource with the key "([^"]*)" stored in session array as variable "([^"]*)" in position (\d+)$/
*/
public function thatIWantToGetAResourceWithTheKeyStoredInSessionArrayAsVariable($varName, $sessionVarName, $position=null)
{
@@ -1184,7 +1189,11 @@ class RestContext extends BehatContext
if (!isset($sessionData->$sessionVarName) ) {
$varValue = '';
}elseif(!is_null($position)){
$varValue = $sessionData->$sessionVarName[$position];
foreach ($sessionData->$sessionVarName as $key => $value) {
if($key == $position){
$varValue = $value;
}
}
} else {
$varValue = $sessionData->$sessionVarName;
}
@@ -1207,7 +1216,11 @@ class RestContext extends BehatContext
if (!isset($sessionData->$sessionVarName) ) {
$varValue = '';
}elseif(!is_null($position)){
$varValue = $sessionData->$sessionVarName[$position];
foreach ($sessionData->$sessionVarName as $key => $value) {
if($key == $position){
$varValue = $value;
}
}
} else {
$varValue = $sessionData->$sessionVarName;
}

View File

@@ -0,0 +1,715 @@
{
"prj_uid": "6e60d25b2a779b263104f141c215466b",
"prj_name": "Project #1 , Creacion de Proceso para derivaciones (parallel)<29>,
"prj_description": "Creacion de Proceso para derivaciones (parallel)<EFBFBD>,
"diagrams": [
{
"dia_uid": "a5242da840064218638061532405176",
"pro_uid": "68269130852b04ccbda0558053566350",
"laneset": [],
"lanes": [],
"activities": [
{
"act_uid": "20130110852b04cd0da0710001476342",
"act_name": "Task # 1",
"act_type": "TASK",
"act_task_type": "EMPTY",
"act_is_for_compensation": false,
"act_start_quantity": 1,
"act_completion_quantity": 0,
"act_implementation": "",
"act_instantiate": false,
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": null,
"act_loop_maximum": 0,
"act_loop_condition": null,
"act_loop_cardinality": 0,
"act_loop_behavior": null,
"act_is_adhoc": false,
"act_is_collapsed": false,
"act_completion_condition": null,
"act_ordering": null,
"act_cancel_remaining_instances": true,
"act_protocol": null,
"act_method": null,
"act_is_global": false,
"act_referer": null,
"act_default_flow": 0,
"act_master_diagram": null,
"bou_x": 334,
"bou_y": 110,
"bou_width": 100,
"bou_height": 50,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
},
{
"act_uid": "55963679852b04cfdda1ca7057330775",
"act_name": "Tarea con T<>tulo Compleato y simbolos especiales",
"act_type": "TASK",
"act_task_type": "EMPTY",
"act_is_for_compensation": false,
"act_start_quantity": 1,
"act_completion_quantity": 0,
"act_implementation": "",
"act_instantiate": false,
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": null,
"act_loop_maximum": 0,
"act_loop_condition": null,
"act_loop_cardinality": 0,
"act_loop_behavior": null,
"act_is_adhoc": false,
"act_is_collapsed": false,
"act_completion_condition": null,
"act_ordering": null,
"act_cancel_remaining_instances": true,
"act_protocol": null,
"act_method": null,
"act_is_global": false,
"act_referer": null,
"act_default_flow": 0,
"act_master_diagram": null,
"bou_x": 135,
"bou_y": 327,
"bou_width": 100,
"bou_height": 50,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
},
{
"act_uid": "36275645952b04d03da2683059221904",
"act_name": "Task # 3",
"act_type": "TASK",
"act_task_type": "EMPTY",
"act_is_for_compensation": false,
"act_start_quantity": 1,
"act_completion_quantity": 0,
"act_implementation": "",
"act_instantiate": false,
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": null,
"act_loop_maximum": 0,
"act_loop_condition": null,
"act_loop_cardinality": 0,
"act_loop_behavior": null,
"act_is_adhoc": false,
"act_is_collapsed": false,
"act_completion_condition": null,
"act_ordering": null,
"act_cancel_remaining_instances": true,
"act_protocol": null,
"act_method": null,
"act_is_global": false,
"act_referer": null,
"act_default_flow": 0,
"act_master_diagram": null,
"bou_x": 336,
"bou_y": 329,
"bou_width": 100,
"bou_height": 50,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
},
{
"act_uid": "39924412652b04d0bda3cc4088664712",
"act_name": "Task # 4",
"act_type": "TASK",
"act_task_type": "EMPTY",
"act_is_for_compensation": false,
"act_start_quantity": 1,
"act_completion_quantity": 0,
"act_implementation": "",
"act_instantiate": false,
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": null,
"act_loop_maximum": 0,
"act_loop_condition": null,
"act_loop_cardinality": 0,
"act_loop_behavior": null,
"act_is_adhoc": false,
"act_is_collapsed": false,
"act_completion_condition": null,
"act_ordering": null,
"act_cancel_remaining_instances": true,
"act_protocol": null,
"act_method": null,
"act_is_global": false,
"act_referer": null,
"act_default_flow": 0,
"act_master_diagram": null,
"bou_x": 467,
"bou_y": 331,
"bou_width": 100,
"bou_height": 50,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
},
{
"act_uid": "81865611252b04d14da4f39027749188",
"act_name": "Task # 5",
"act_type": "TASK",
"act_task_type": "EMPTY",
"act_is_for_compensation": false,
"act_start_quantity": 1,
"act_completion_quantity": 0,
"act_implementation": "",
"act_instantiate": false,
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": null,
"act_loop_maximum": 0,
"act_loop_condition": null,
"act_loop_cardinality": 0,
"act_loop_behavior": null,
"act_is_adhoc": false,
"act_is_collapsed": false,
"act_completion_condition": null,
"act_ordering": null,
"act_cancel_remaining_instances": true,
"act_protocol": null,
"act_method": null,
"act_is_global": false,
"act_referer": null,
"act_default_flow": 0,
"act_master_diagram": null,
"bou_x": 634,
"bou_y": 331,
"bou_width": 100,
"bou_height": 50,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
},
{
"act_uid": "43669577152b05b69daabe5029145631",
"act_name": "Task # 6",
"act_type": "TASK",
"act_task_type": "EMPTY",
"act_is_for_compensation": false,
"act_start_quantity": 1,
"act_completion_quantity": 0,
"act_implementation": "",
"act_instantiate": false,
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": null,
"act_loop_maximum": 0,
"act_loop_condition": null,
"act_loop_cardinality": 0,
"act_loop_behavior": null,
"act_is_adhoc": false,
"act_is_collapsed": false,
"act_completion_condition": null,
"act_ordering": null,
"act_cancel_remaining_instances": true,
"act_protocol": null,
"act_method": null,
"act_is_global": false,
"act_referer": null,
"act_default_flow": 0,
"act_master_diagram": null,
"bou_x": 429,
"bou_y": 531,
"bou_width": 100,
"bou_height": 50,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
}
],
"events": [
{
"evn_uid": "55171305452b04cd3da08c9074517180",
"evn_name": "Start # 1",
"evn_type": "START",
"evn_marker": "MESSAGE",
"evn_is_interrupting": true,
"evn_cancel_activity": false,
"evn_activity_ref": null,
"evn_wait_for_completion": false,
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "LEAD",
"evn_operation_name": null,
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "CATCH",
"bou_x": 367,
"bou_y": 32,
"bou_width": 33,
"bou_height": 33,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
},
{
"evn_uid": "57589846552b05b73daea69075516155",
"evn_name": "End # 1",
"evn_type": "END",
"evn_marker": "EMPTY",
"evn_is_interrupting": true,
"evn_cancel_activity": false,
"evn_activity_ref": null,
"evn_wait_for_completion": false,
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "",
"evn_operation_name": null,
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "THROW",
"bou_x": 579,
"bou_y": 621,
"bou_width": 33,
"bou_height": 33,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
}
],
"gateways": [
{
"gat_uid": "37050857352b04ceada1799074850936",
"gat_name": "Parallel by Evaluation # 1",
"gat_type": "PARALLEL_EVALUATION",
"gat_direction": null,
"gat_instantiate": false,
"gat_event_gateway_type": "NONE",
"gat_activation_count": 0,
"gat_waiting_for_start": true,
"gat_default_flow": 0,
"bou_x": 363,
"bou_y": 205,
"bou_width": 45,
"bou_height": 45,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
},
{
"gat_uid": "96977315752b04d25da5fb6015463105",
"gat_name": "Parallel Join # 1",
"gat_type": "PARALLEL_JOIN",
"gat_direction": null,
"gat_instantiate": false,
"gat_event_gateway_type": "NONE",
"gat_activation_count": 0,
"gat_waiting_for_start": true,
"gat_default_flow": 0,
"bou_x": 391,
"bou_y": 457,
"bou_width": 45,
"bou_height": 45,
"bou_container": "bpmnDiagram",
"bou_element_id": "70770714052b04ccbda05a2045860900"
}
],
"flows": [
{
"flo_uid": "85852223452b04cd9da0d24062477197",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "55171305452b04cd3da08c9074517180",
"flo_element_origin_type": "bpmnEvent",
"flo_element_dest": "20130110852b04cd0da0710001476342",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 382,
"y": 67
},
{
"x": 382,
"y": 87
},
{
"x": 383,
"y": 87
},
{
"x": 383,
"y": 108
}
],
"flo_x1": 382,
"flo_y1": 114,
"flo_x2": 388,
"flo_y2": 114
},
{
"flo_uid": "98521752352b04cf9da1bc8031684305",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "20130110852b04cd0da0710001476342",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "37050857352b04ceada1799074850936",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 383,
"y": 163
},
{
"x": 383,
"y": 184
},
{
"x": 386,
"y": 184
},
{
"x": 386,
"y": 205
}
],
"flo_x1": 383,
"flo_y1": 205,
"flo_x2": 386,
"flo_y2": 205
},
{
"flo_uid": "51012823052b04d00da25b0076746454",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "37050857352b04ceada1799074850936",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "55963679852b04cfdda1ca7057330775",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 386,
"y": 250
},
{
"x": 386,
"y": 287
},
{
"x": 184,
"y": 287
},
{
"x": 184,
"y": 325
}
],
"flo_x1": 386,
"flo_y1": 325,
"flo_x2": 223,
"flo_y2": 325
},
{
"flo_uid": "21566164052b04d06da2be5053173210",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "37050857352b04ceada1799074850936",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "36275645952b04d03da2683059221904",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 386,
"y": 250
},
{
"x": 386,
"y": 288
},
{
"x": 385,
"y": 288
},
{
"x": 385,
"y": 327
}
],
"flo_x1": 386,
"flo_y1": 336,
"flo_x2": 439,
"flo_y2": 336
},
{
"flo_uid": "13502002652b04d0eda4297008861549",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "37050857352b04ceada1799074850936",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "39924412652b04d0bda3cc4088664712",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 386,
"y": 250
},
{
"x": 386,
"y": 289
},
{
"x": 516,
"y": 289
},
{
"x": 516,
"y": 329
}
],
"flo_x1": 386,
"flo_y1": 341,
"flo_x2": 556,
"flo_y2": 341,
"_action": "CREATE"
},
{
"flo_uid": "51780192952b04d1ada5389065057435",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "37050857352b04ceada1799074850936",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "81865611252b04d14da4f39027749188",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 386,
"y": 250
},
{
"x": 386,
"y": 289
},
{
"x": 683,
"y": 289
},
{
"x": 683,
"y": 329
}
],
"flo_x1": 386,
"flo_y1": 329,
"flo_x2": 683,
"flo_y2": 329
},
{
"flo_uid": "11527570252b04d29da6573070436369",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "36275645952b04d03da2683059221904",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "96977315752b04d25da5fb6015463105",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 385,
"y": 382
},
{
"x": 385,
"y": 419
},
{
"x": 414,
"y": 419
},
{
"x": 414,
"y": 457
}
],
"flo_x1": 385,
"flo_y1": 480,
"flo_x2": 414,
"flo_y2": 480
},
{
"flo_uid": "99492263452b04d2dda6d16026220307",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "39924412652b04d0bda3cc4088664712",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "96977315752b04d25da5fb6015463105",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 516,
"y": 384
},
{
"x": 516,
"y": 420
},
{
"x": 414,
"y": 420
},
{
"x": 414,
"y": 457
}
],
"flo_x1": 516,
"flo_y1": 480,
"flo_x2": 414,
"flo_y2": 480
},
{
"flo_uid": "61995297952b04d31da7337053386832",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "81865611252b04d14da4f39027749188",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "96977315752b04d25da5fb6015463105",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 683,
"y": 384
},
{
"x": 683,
"y": 480
},
{
"x": 436,
"y": 480
}
],
"flo_x1": 683,
"flo_y1": 503,
"flo_x2": 436,
"flo_y2": 503
},
{
"flo_uid": "52373453752b04d34da7826007505462",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "55963679852b04cfdda1ca7057330775",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "96977315752b04d25da5fb6015463105",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 184,
"y": 380
},
{
"x": 184,
"y": 480
},
{
"x": 391,
"y": 480
}
],
"flo_x1": 184,
"flo_y1": 503,
"flo_x2": 391,
"flo_y2": 503
},
{
"flo_uid": "98839915852b05b6cdab1d9031584510",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "96977315752b04d25da5fb6015463105",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "43669577152b05b69daabe5029145631",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 414,
"y": 457
},
{
"x": 414,
"y": 437
},
{
"x": 478,
"y": 437
},
{
"x": 478,
"y": 529
}
],
"flo_x1": 414,
"flo_y1": 600,
"flo_x2": 443,
"flo_y2": 600
},
{
"flo_uid": "30547450952b05b75daefd9056968485",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "43669577152b05b69daabe5029145631",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "57589846552b05b73daea69075516155",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": true,
"flo_condition": null,
"flo_state": [
{
"x": 478,
"y": 529
},
{
"x": 478,
"y": 509
},
{
"x": 594,
"y": 509
},
{
"x": 594,
"y": 619
}
],
"flo_x1": 478,
"flo_y1": 664,
"flo_x2": 531,
"flo_y2": 664
}
],
"artifacts": []
}
]
}

View File

@@ -0,0 +1,604 @@
{
"prj_uid": "9688010085366dc14aef705082114067",
"prj_name": "Evaluation",
"prj_description": "",
"prj_target_namespace": "",
"prj_expresion_language": null,
"prj_type_language": null,
"prj_exporter": null,
"prj_exporter_version": null,
"prj_create_date": "2014-04-30 11:06:31",
"prj_update_date": "2014-05-04 20:53:33",
"prj_author": "00000000000000000000000000000001",
"prj_author_version": null,
"prj_original_source": null,
"diagrams": [
{
"dia_uid": "3003875385366dc14bebbe8075027536",
"prj_uid": "9688010085366dc14aef705082114067",
"dia_name": "Evaluation",
"dia_is_closable": 0,
"pro_uid": "2488875965366dc14c0c471041853683",
"activities": [
{
"act_uid": "1619403425366dd1f8bda80020442132",
"act_name": "Task # 2",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "600",
"bou_y": "266",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "5375356535366dd1f816015034557419",
"act_name": "Task # 1",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "600",
"bou_y": "135",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "6269797175366e081391de1031612281",
"act_name": "Task # 3",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "1",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "600",
"bou_y": "371",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "8394925175366dc14dd60b7026210369",
"act_name": "Init",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "185",
"bou_y": "303",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "9866636695366e0953c3167018893583",
"act_name": "Task # 4",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "1",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "600",
"bou_y": "494",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
}
],
"events": [
{
"evn_uid": "3221094345366dd9d3efe16091256827",
"evn_name": "End # 1",
"evn_type": "END",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "THROW",
"evn_operation_name": null,
"bou_x": "1036",
"bou_y": "289",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
},
{
"evn_uid": "9447601725366dc15043ad0024735511",
"evn_name": "Start # 1",
"evn_type": "START",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "LEAD",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "CATCH",
"evn_operation_name": null,
"bou_x": "39",
"bou_y": "110",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"gateways": [
{
"gat_uid": "9472376585366dd4d4ae680099737909",
"gat_name": "undefined # 1",
"gat_type": "EXCLUSIVE",
"gat_direction": "DIVERGING",
"gat_instantiate": "0",
"gat_activation_count": "0",
"gat_waiting_for_start": "1",
"gat_default_flow": "0",
"gat_event_gateway_type": "NONE",
"bou_x": "448",
"bou_y": "306",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"flows": [
{
"flo_uid": "1074287855366e0a96d8fc2003748943",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "1619403425366dd1f8bda80020442132",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "3221094345366dd9d3efe16091256827",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "757",
"flo_y1": "301",
"flo_x2": "1031",
"flo_y2": "301",
"flo_state": [
{
"x": 762,
"y": 286
},
{
"x": 899,
"y": 286
},
{
"x": 899,
"y": 306
},
{
"x": 1036,
"y": 306
}
]
},
{
"flo_uid": "1755653195366dd9d46d199052813244",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "5375356535366dd1f816015034557419",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "3221094345366dd9d3efe16091256827",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "757",
"flo_y1": "301",
"flo_x2": "1031",
"flo_y2": "301",
"flo_state": [
{
"x": 762,
"y": 155
},
{
"x": 899,
"y": 155
},
{
"x": 899,
"y": 306
},
{
"x": 1036,
"y": 306
}
]
},
{
"flo_uid": "2757982485366dd614a1d97067354901",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "9472376585366dd4d4ae680099737909",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "5375356535366dd1f816015034557419",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": "(@@Condicion1 == \"1\") && (@@Condicion2==\"1\")",
"flo_x1": "476",
"flo_y1": "150",
"flo_x2": "594",
"flo_y2": "150",
"flo_state": [
{
"x": 481,
"y": 323
},
{
"x": 540,
"y": 323
},
{
"x": 540,
"y": 155
},
{
"x": 599,
"y": 155
}
]
},
{
"flo_uid": "6590341985366dd614a5a25055473196",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "9472376585366dd4d4ae680099737909",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "1619403425366dd1f8bda80020442132",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": "(@@Condicion1 == \"1\") || (@@Condicion2==\"1\")",
"flo_x1": "476",
"flo_y1": "281",
"flo_x2": "594",
"flo_y2": "281",
"flo_state": [
{
"x": 481,
"y": 323
},
{
"x": 540,
"y": 323
},
{
"x": 540,
"y": 286
},
{
"x": 599,
"y": 286
}
]
},
{
"flo_uid": "7028178785366dc15100a66037830659",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "9447601725366dc15043ad0024735511",
"flo_element_origin_type": "bpmnEvent",
"flo_element_dest": "8394925175366dc14dd60b7026210369",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "51",
"flo_y1": "318",
"flo_x2": "179",
"flo_y2": "318",
"flo_state": [
{
"x": 56,
"y": 143
},
{
"x": 56,
"y": 326
},
{
"x": 184,
"y": 326
}
]
},
{
"flo_uid": "7235004365366e10d8a11f2035193862",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "9472376585366dd4d4ae680099737909",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "9866636695366e0953c3167018893583",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": "(@@Condicion1 == \"0\") || (@@Condicion2==\"0\")",
"flo_x1": "476",
"flo_y1": "509",
"flo_x2": "594",
"flo_y2": "509",
"flo_state": [
{
"x": 481,
"y": 323
},
{
"x": 540,
"y": 323
},
{
"x": 540,
"y": 514
},
{
"x": 599,
"y": 514
}
]
},
{
"flo_uid": "7584411255366dd4d53ca74069616451",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "8394925175366dc14dd60b7026210369",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "9472376585366dd4d4ae680099737909",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "342",
"flo_y1": "318",
"flo_x2": "443",
"flo_y2": "318",
"flo_state": [
{
"x": 347,
"y": 326
},
{
"x": 397,
"y": 326
},
{
"x": 397,
"y": 323
},
{
"x": 448,
"y": 323
}
]
},
{
"flo_uid": "8187409105366e0a96dc893029492430",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "6269797175366e081391de1031612281",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "3221094345366dd9d3efe16091256827",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "757",
"flo_y1": "301",
"flo_x2": "1031",
"flo_y2": "301",
"flo_state": [
{
"x": 762,
"y": 391
},
{
"x": 899,
"y": 391
},
{
"x": 899,
"y": 306
},
{
"x": 1036,
"y": 306
}
]
},
{
"flo_uid": "9756728125366e0a96dfff7029306012",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "9866636695366e0953c3167018893583",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "3221094345366dd9d3efe16091256827",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "757",
"flo_y1": "301",
"flo_x2": "1031",
"flo_y2": "301",
"flo_state": [
{
"x": 762,
"y": 514
},
{
"x": 899,
"y": 514
},
{
"x": 899,
"y": 306
},
{
"x": 1036,
"y": 306
}
]
},
{
"flo_uid": "9868876955366e10d89d5e0049466887",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "9472376585366dd4d4ae680099737909",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "6269797175366e081391de1031612281",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": "(@@Condicion1 == \"0\") && (@@Condicion2==\"0\")",
"flo_x1": "481",
"flo_y1": "386",
"flo_x2": "589",
"flo_y2": "386",
"flo_state": [
{
"x": 481,
"y": 323
},
{
"x": 540,
"y": 323
},
{
"x": 540,
"y": 391
},
{
"x": 599,
"y": 391
}
]
}
],
"artifacts": [],
"laneset": [],
"lanes": []
}
]
}

View File

@@ -0,0 +1,673 @@
{
"prj_uid": "69521964453610ef31658a0002718082",
"prj_name": "Parallel",
"prj_description": "",
"prj_target_namespace": "",
"prj_expresion_language": null,
"prj_type_language": null,
"prj_exporter": null,
"prj_exporter_version": null,
"prj_create_date": "2014-04-30 10:55:47",
"prj_update_date": "2014-05-04 18:02:56",
"prj_author": "00000000000000000000000000000001",
"prj_author_version": null,
"prj_original_source": null,
"diagrams": [
{
"dia_uid": "52773390153610ef3221a70042883409",
"prj_uid": "69521964453610ef31658a0002718082",
"dia_name": "Parallel",
"dia_is_closable": 0,
"pro_uid": "94826830153610ef3244309004123239",
"activities": [
{
"act_uid": "29649194253610f30c9f446031789293",
"act_name": "Task # 4",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "562",
"bou_y": "307",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "36226701953610f1ccc06f6048129910",
"act_name": "Init",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "140",
"bou_y": "263",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "44632896453610f30be69b6018046952",
"act_name": "Task # 3",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "562",
"bou_y": "189",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "47441354653610f30dea4f7005163852",
"act_name": "Task # 6",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "989",
"bou_y": "247",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "70802679553610f30d45f46078505807",
"act_name": "Task # 5",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "562",
"bou_y": "427",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "83682993653610f30b0eb78062545951",
"act_name": "Task # 2",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "562",
"bou_y": "76",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
}
],
"events": [
{
"evn_uid": "35467759453610ff8e41dd5077068417",
"evn_name": "End # 1",
"evn_type": "END",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "THROW",
"evn_operation_name": null,
"bou_x": "1052",
"bou_y": "341",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
},
{
"evn_uid": "96035106953610f08c02b44015307912",
"evn_name": "Start # 1",
"evn_type": "START",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "LEAD",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "CATCH",
"evn_operation_name": null,
"bou_x": "51",
"bou_y": "266",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"gateways": [
{
"gat_uid": "22741117053610f4537dc11053033689",
"gat_name": "Parallel # 1",
"gat_type": "PARALLEL",
"gat_direction": "DIVERGING",
"gat_instantiate": "0",
"gat_activation_count": "0",
"gat_waiting_for_start": "1",
"gat_default_flow": "0",
"gat_event_gateway_type": "NONE",
"bou_x": "419",
"bou_y": "266",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
},
{
"gat_uid": "88531973853610f6d1d26b2056458053",
"gat_name": "Parallel # 2",
"gat_type": "PARALLEL",
"gat_direction": "CONVERGING",
"gat_instantiate": "0",
"gat_activation_count": "0",
"gat_waiting_for_start": "1",
"gat_default_flow": "0",
"gat_event_gateway_type": "NONE",
"bou_x": "881",
"bou_y": "250",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"flows": [
{
"flo_uid": "154508491536110077478a1080933982",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "47441354653610f30dea4f7005163852",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "35467759453610ff8e41dd5077068417",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "1064",
"flo_y1": "336",
"flo_x2": "1064",
"flo_y2": "336",
"flo_state": [
{
"x": 1069,
"y": 289
},
{
"x": 1069,
"y": 341
}
]
},
{
"flo_uid": "21268522553610f5908ca56096435100",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "22741117053610f4537dc11053033689",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "70802679553610f30d45f46078505807",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "431",
"flo_y1": "442",
"flo_x2": "556",
"flo_y2": "442",
"flo_state": [
{
"x": 436,
"y": 299
},
{
"x": 436,
"y": 447
},
{
"x": 561,
"y": 447
}
]
},
{
"flo_uid": "23119204453610f454943b0052154600",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "36226701953610f1ccc06f6048129910",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "22741117053610f4537dc11053033689",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "297",
"flo_y1": "278",
"flo_x2": "414",
"flo_y2": "278",
"flo_state": [
{
"x": 302,
"y": 283
},
{
"x": 419,
"y": 283
}
]
},
{
"flo_uid": "39758482153610f8112ccc5056939410",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "70802679553610f30d45f46078505807",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "88531973853610f6d1d26b2056458053",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "637",
"flo_y1": "278",
"flo_x2": "893",
"flo_y2": "278",
"flo_state": [
{
"x": 642,
"y": 426
},
{
"x": 642,
"y": 354
},
{
"x": 898,
"y": 354
},
{
"x": 898,
"y": 283
}
]
},
{
"flo_uid": "45340073953610f6d2cb1c2025731495",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "83682993653610f30b0eb78062545951",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "88531973853610f6d1d26b2056458053",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "719",
"flo_y1": "245",
"flo_x2": "893",
"flo_y2": "245",
"flo_state": [
{
"x": 724,
"y": 96
},
{
"x": 898,
"y": 96
},
{
"x": 898,
"y": 250
}
]
},
{
"flo_uid": "538959329536113e0f1a747078853118",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "22741117053610f4537dc11053033689",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "44632896453610f30be69b6018046952",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "431",
"flo_y1": "204",
"flo_x2": "556",
"flo_y2": "204",
"flo_state": [
{
"x": 436,
"y": 266
},
{
"x": 436,
"y": 209
},
{
"x": 561,
"y": 209
}
]
},
{
"flo_uid": "69924331353610f81129143089635448",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "29649194253610f30c9f446031789293",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "88531973853610f6d1d26b2056458053",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "719",
"flo_y1": "262",
"flo_x2": "876",
"flo_y2": "262",
"flo_state": [
{
"x": 724,
"y": 327
},
{
"x": 802,
"y": 327
},
{
"x": 802,
"y": 267
},
{
"x": 881,
"y": 267
}
]
},
{
"flo_uid": "70645039653610f30f220a6057498106",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "96035106953610f08c02b44015307912",
"flo_element_origin_type": "bpmnEvent",
"flo_element_dest": "36226701953610f1ccc06f6048129910",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "79",
"flo_y1": "278",
"flo_x2": "134",
"flo_y2": "278",
"flo_state": [
{
"x": 84,
"y": 283
},
{
"x": 139,
"y": 283
}
]
},
{
"flo_uid": "715847216536113e0f1e399093409647",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "22741117053610f4537dc11053033689",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "29649194253610f30c9f446031789293",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "431",
"flo_y1": "322",
"flo_x2": "556",
"flo_y2": "322",
"flo_state": [
{
"x": 436,
"y": 299
},
{
"x": 436,
"y": 327
},
{
"x": 561,
"y": 327
}
]
},
{
"flo_uid": "809067002536113e0f16911061876041",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "22741117053610f4537dc11053033689",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "83682993653610f30b0eb78062545951",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "431",
"flo_y1": "91",
"flo_x2": "556",
"flo_y2": "91",
"flo_state": [
{
"x": 436,
"y": 266
},
{
"x": 436,
"y": 96
},
{
"x": 561,
"y": 96
}
]
},
{
"flo_uid": "86065647253610f6d2cf064091645086",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "44632896453610f30be69b6018046952",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "88531973853610f6d1d26b2056458053",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "719",
"flo_y1": "262",
"flo_x2": "876",
"flo_y2": "262",
"flo_state": [
{
"x": 724,
"y": 209
},
{
"x": 802,
"y": 209
},
{
"x": 802,
"y": 267
},
{
"x": 881,
"y": 267
}
]
},
{
"flo_uid": "87705210253610f81130789046852301",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "88531973853610f6d1d26b2056458053",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "47441354653610f30dea4f7005163852",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "909",
"flo_y1": "262",
"flo_x2": "983",
"flo_y2": "262",
"flo_state": [
{
"x": 914,
"y": 267
},
{
"x": 988,
"y": 267
}
]
}
],
"artifacts": [],
"laneset": [],
"lanes": []
}
]
}

View File

@@ -0,0 +1,618 @@
{
"prj_uid": "40825692053610d4e916903011343995",
"prj_name": "Paralell x Evaluation",
"prj_description": "",
"prj_target_namespace": "",
"prj_expresion_language": null,
"prj_type_language": null,
"prj_exporter": null,
"prj_exporter_version": null,
"prj_create_date": "2014-04-30 10:48:46",
"prj_update_date": "2014-04-30 11:15:00",
"prj_author": "00000000000000000000000000000001",
"prj_author_version": null,
"prj_original_source": null,
"diagrams": [
{
"dia_uid": "70607659553610d4e9b18d0029917170",
"prj_uid": "40825692053610d4e916903011343995",
"dia_name": "Paralell x Evaluation",
"dia_is_closable": 0,
"pro_uid": "60555583453610d4e9d40f3083413448",
"activities": [
{
"act_uid": "24348722953610dc82ab7a4040008570",
"act_name": "Task # 6",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "1006",
"bou_y": "243",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "36404103053610d7854c715022897160",
"act_name": "Task # 4",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "631",
"bou_y": "309",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "66543192453610d641c75c4094316862",
"act_name": "Init",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "205",
"bou_y": "250",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "83666972753610d7849e2e2069725268",
"act_name": "Task # 3",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "631",
"bou_y": "191",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "95618097153610d7879d728044331674",
"act_name": "Task # 5",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "631",
"bou_y": "428",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "96324877953610d783e1d96050187480",
"act_name": "Task # 2",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "631",
"bou_y": "73",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
}
],
"events": [
{
"evn_uid": "15429403753610d64326f01057349097",
"evn_name": "Start # 1",
"evn_type": "START",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "LEAD",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "CATCH",
"evn_operation_name": null,
"bou_x": "48",
"bou_y": "253",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"gateways": [
{
"gat_uid": "12184524153610ea440f321023983442",
"gat_name": "undefined # 2",
"gat_type": "INCLUSIVE",
"gat_direction": "CONVERGING",
"gat_instantiate": "0",
"gat_activation_count": "0",
"gat_waiting_for_start": "1",
"gat_default_flow": "0",
"gat_event_gateway_type": "NONE",
"bou_x": "880",
"bou_y": "246",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
},
{
"gat_uid": "90579251153610da07bacc2057945224",
"gat_name": "undefined # 1",
"gat_type": "INCLUSIVE",
"gat_direction": "DIVERGING",
"gat_instantiate": "0",
"gat_activation_count": "0",
"gat_waiting_for_start": "1",
"gat_default_flow": "0",
"gat_event_gateway_type": "NONE",
"bou_x": "471",
"bou_y": "253",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"flows": [
{
"flo_uid": "22788271053610e7c825066072236550",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "90579251153610da07bacc2057945224",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "83666972753610d7849e2e2069725268",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "483",
"flo_y1": "206",
"flo_x2": "625",
"flo_y2": "206",
"flo_state": [
{
"x": 488,
"y": 253
},
{
"x": 488,
"y": 211
},
{
"x": 630,
"y": 211
}
]
},
{
"flo_uid": "30192964353611360438fb3016606605",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "83666972753610d7849e2e2069725268",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "12184524153610ea440f321023983442",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "788",
"flo_y1": "241",
"flo_x2": "892",
"flo_y2": "241",
"flo_state": [
{
"x": 793,
"y": 211
},
{
"x": 897,
"y": 211
},
{
"x": 897,
"y": 246
}
]
},
{
"flo_uid": "40365255753610eb83a0a62002618735",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "96324877953610d783e1d96050187480",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "12184524153610ea440f321023983442",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "788",
"flo_y1": "241",
"flo_x2": "892",
"flo_y2": "241",
"flo_state": [
{
"x": 793,
"y": 93
},
{
"x": 897,
"y": 93
},
{
"x": 897,
"y": 246
}
]
},
{
"flo_uid": "46629891753610e5453f3d4088522684",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "90579251153610da07bacc2057945224",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "95618097153610d7879d728044331674",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "483",
"flo_y1": "443",
"flo_x2": "625",
"flo_y2": "443",
"flo_state": [
{
"x": 488,
"y": 286
},
{
"x": 488,
"y": 448
},
{
"x": 630,
"y": 448
}
]
},
{
"flo_uid": "53785664953610e545341a2076986546",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "90579251153610da07bacc2057945224",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "96324877953610d783e1d96050187480",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "483",
"flo_y1": "88",
"flo_x2": "625",
"flo_y2": "88",
"flo_state": [
{
"x": 488,
"y": 253
},
{
"x": 488,
"y": 93
},
{
"x": 630,
"y": 93
}
]
},
{
"flo_uid": "555524595536113746dc759004319074",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "95618097153610d7879d728044331674",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "12184524153610ea440f321023983442",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "788",
"flo_y1": "258",
"flo_x2": "875",
"flo_y2": "258",
"flo_state": [
{
"x": 793,
"y": 448
},
{
"x": 836,
"y": 448
},
{
"x": 836,
"y": 263
},
{
"x": 880,
"y": 263
}
]
},
{
"flo_uid": "77160230853610d64383a36028762825",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "15429403753610d64326f01057349097",
"flo_element_origin_type": "bpmnEvent",
"flo_element_dest": "66543192453610d641c75c4094316862",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "76",
"flo_y1": "265",
"flo_x2": "199",
"flo_y2": "265",
"flo_state": [
{
"x": 81,
"y": 270
},
{
"x": 204,
"y": 270
}
]
},
{
"flo_uid": "88597363553610e5453b951093242495",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "90579251153610da07bacc2057945224",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "36404103053610d7854c715022897160",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "483",
"flo_y1": "324",
"flo_x2": "625",
"flo_y2": "324",
"flo_state": [
{
"x": 488,
"y": 286
},
{
"x": 488,
"y": 329
},
{
"x": 630,
"y": 329
}
]
},
{
"flo_uid": "90337324653610ecc683397014508961",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "12184524153610ea440f321023983442",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "24348722953610dc82ab7a4040008570",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "908",
"flo_y1": "258",
"flo_x2": "1000",
"flo_y2": "258",
"flo_state": [
{
"x": 913,
"y": 263
},
{
"x": 1005,
"y": 263
}
]
},
{
"flo_uid": "90754917753610db4518c77090887091",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "66543192453610d641c75c4094316862",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "90579251153610da07bacc2057945224",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "362",
"flo_y1": "265",
"flo_x2": "466",
"flo_y2": "265",
"flo_state": [
{
"x": 367,
"y": 270
},
{
"x": 471,
"y": 270
}
]
},
{
"flo_uid": "9663341315361136043cb32052724666",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "36404103053610d7854c715022897160",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "12184524153610ea440f321023983442",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "788",
"flo_y1": "258",
"flo_x2": "875",
"flo_y2": "258",
"flo_state": [
{
"x": 793,
"y": 329
},
{
"x": 836,
"y": 329
},
{
"x": 836,
"y": 263
},
{
"x": 880,
"y": 263
}
]
}
],
"artifacts": [],
"laneset": [],
"lanes": []
}
]
}

View File

@@ -0,0 +1,507 @@
{
"prj_uid": "18652577353611fa4461b57095264761",
"prj_name": "Selection",
"prj_description": "",
"prj_target_namespace": "",
"prj_expresion_language": null,
"prj_type_language": null,
"prj_exporter": null,
"prj_exporter_version": null,
"prj_create_date": "2014-04-30 09:46:42",
"prj_update_date": "2014-05-04 18:39:53",
"prj_author": "00000000000000000000000000000001",
"prj_author_version": null,
"prj_original_source": null,
"diagrams": [
{
"dia_uid": "78358403853611fa45759d8047156140",
"prj_uid": "18652577353611fa4461b57095264761",
"dia_name": "Selection",
"dia_is_closable": 0,
"pro_uid": "37444038853611fa45a23d2036170496",
"activities": [
{
"act_uid": "2976327785366c044702566032933186",
"act_name": "Task # 4",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "666",
"bou_y": "479",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "4084518025366bef05bf526036544262",
"act_name": "Task # 2",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "666",
"bou_y": "159",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "7015653305366beb44b9f09041434402",
"act_name": "Task # 1",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "167",
"bou_y": "316",
"bou_width": "161",
"bou_height": "41",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "9458221125366bef0699fb4008587384",
"act_name": "Task # 3",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "666",
"bou_y": "317",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
}
],
"events": [
{
"evn_uid": "7403793715366c17cd9bd07078716991",
"evn_name": "End # 1",
"evn_type": "END",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "THROW",
"evn_operation_name": null,
"bou_x": "995",
"bou_y": "320",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
},
{
"evn_uid": "7592218585366c168d07ce0069810666",
"evn_name": "Start # 1",
"evn_type": "START",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "LEAD",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "CATCH",
"evn_operation_name": null,
"bou_x": "84",
"bou_y": "319",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"gateways": [
{
"gat_uid": "2246355095366bef0770526041697450",
"gat_name": "undefined # 1",
"gat_type": "COMPLEX",
"gat_direction": "DIVERGING",
"gat_instantiate": "0",
"gat_activation_count": "0",
"gat_waiting_for_start": "1",
"gat_default_flow": "0",
"gat_event_gateway_type": "NONE",
"bou_x": "405",
"bou_y": "319",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"flows": [
{
"flo_uid": "2224403875366c168d835b8077578887",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "7592218585366c168d07ce0069810666",
"flo_element_origin_type": "bpmnEvent",
"flo_element_dest": "7015653305366beb44b9f09041434402",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "112",
"flo_y1": "331",
"flo_x2": "161",
"flo_y2": "331",
"flo_state": [
{
"x": 117,
"y": 335
},
{
"x": 141,
"y": 335
},
{
"x": 141,
"y": 336
},
{
"x": 166,
"y": 336
}
]
},
{
"flo_uid": "2453508125366bf40880a23010675982",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "2246355095366bef0770526041697450",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "9458221125366bef0699fb4008587384",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": "Ir a tarea 3",
"flo_x1": "438",
"flo_y1": "332",
"flo_x2": "655",
"flo_y2": "332",
"flo_state": [
{
"x": 443,
"y": 334
},
{
"x": 551,
"y": 334
},
{
"x": 551,
"y": 337
},
{
"x": 660,
"y": 337
}
]
},
{
"flo_uid": "2530840015366c190eaa933035235901",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "9458221125366bef0699fb4008587384",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "7403793715366c17cd9bd07078716991",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "823",
"flo_y1": "332",
"flo_x2": "990",
"flo_y2": "332",
"flo_state": [
{
"x": 828,
"y": 337
},
{
"x": 911,
"y": 337
},
{
"x": 911,
"y": 341
},
{
"x": 995,
"y": 341
}
]
},
{
"flo_uid": "2992712845366bf4087cfe6088254753",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "2246355095366bef0770526041697450",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "4084518025366bef05bf526036544262",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": "Ir a tarea 2",
"flo_x1": "433",
"flo_y1": "174",
"flo_x2": "660",
"flo_y2": "174",
"flo_state": [
{
"x": 438,
"y": 336
},
{
"x": 551,
"y": 336
},
{
"x": 551,
"y": 179
},
{
"x": 665,
"y": 179
}
]
},
{
"flo_uid": "3238698745366c11922b4a5018842784",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "2246355095366bef0770526041697450",
"flo_element_origin_type": "bpmnGateway",
"flo_element_dest": "2976327785366c044702566032933186",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": "Ir a tarea 2",
"flo_x1": "438",
"flo_y1": "494",
"flo_x2": "655",
"flo_y2": "494",
"flo_state": [
{
"x": 443,
"y": 334
},
{
"x": 551,
"y": 334
},
{
"x": 551,
"y": 499
},
{
"x": 660,
"y": 499
}
]
},
{
"flo_uid": "5960316955366c17ce1dd25010494900",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "4084518025366bef05bf526036544262",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "7403793715366c17cd9bd07078716991",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "823",
"flo_y1": "332",
"flo_x2": "990",
"flo_y2": "332",
"flo_state": [
{
"x": 828,
"y": 179
},
{
"x": 911,
"y": 179
},
{
"x": 911,
"y": 337
},
{
"x": 995,
"y": 337
}
]
},
{
"flo_uid": "7260925555366c190eaefa0066253606",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "2976327785366c044702566032933186",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "7403793715366c17cd9bd07078716991",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "823",
"flo_y1": "332",
"flo_x2": "990",
"flo_y2": "332",
"flo_state": [
{
"x": 828,
"y": 499
},
{
"x": 911,
"y": 499
},
{
"x": 911,
"y": 337
},
{
"x": 995,
"y": 337
}
]
},
{
"flo_uid": "9603014495366bf549231f0012368493",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "7015653305366beb44b9f09041434402",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "2246355095366bef0770526041697450",
"flo_element_dest_type": "bpmnGateway",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "324",
"flo_y1": "331",
"flo_x2": "400",
"flo_y2": "331",
"flo_state": [
{
"x": 293,
"y": 322
},
{
"x": 349,
"y": 322
},
{
"x": 349,
"y": 336
},
{
"x": 405,
"y": 336
}
]
}
],
"artifacts": [],
"laneset": [],
"lanes": []
}
]
}

View File

@@ -0,0 +1,307 @@
{
"prj_uid": "7885138555360fb2e28f0a0063058599",
"prj_name": "sequencial",
"prj_description": "",
"prj_target_namespace": "",
"prj_expresion_language": null,
"prj_type_language": null,
"prj_exporter": null,
"prj_exporter_version": null,
"prj_create_date": "2014-04-30 09:31:26",
"prj_update_date": "2014-04-30 11:11:58",
"prj_author": "00000000000000000000000000000001",
"prj_author_version": null,
"prj_original_source": null,
"diagrams": [
{
"dia_uid": "7939319765360fb2e3441d2015716509",
"prj_uid": "7885138555360fb2e28f0a0063058599",
"dia_name": "sequencial",
"dia_is_closable": 0,
"pro_uid": "3587033585360fb2e368c05064394624",
"activities": [
{
"act_uid": "1194280405360fb451aaba6003196951",
"act_name": "Task # 2",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "461",
"bou_y": "142",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "1986563825360fb452569d2062760807",
"act_name": "Task # 3",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "695",
"bou_y": "142",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
},
{
"act_uid": "9008273035360fb4508c320094467351",
"act_name": "Init",
"act_type": "TASK",
"act_is_for_compensation": "0",
"act_start_quantity": "1",
"act_completion_quantity": "0",
"act_task_type": "EMPTY",
"act_implementation": "",
"act_instantiate": "0",
"act_script_type": "",
"act_script": "",
"act_loop_type": "NONE",
"act_test_before": "0",
"act_loop_maximum": "0",
"act_loop_condition": "0",
"act_loop_cardinality": "0",
"act_loop_behavior": "0",
"act_is_adhoc": "0",
"act_is_collapsed": "0",
"act_completion_condition": "0",
"act_ordering": "0",
"act_cancel_remaining_instances": "0",
"act_protocol": "0",
"act_method": "0",
"act_is_global": "0",
"act_referer": "0",
"act_default_flow": "0",
"act_master_diagram": "0",
"bou_x": "223",
"bou_y": "142",
"bou_width": "160",
"bou_height": "40",
"bou_container": "bpmnDiagram"
}
],
"events": [
{
"evn_uid": "2574218295360fb5948cc54092613191",
"evn_name": "End # 1",
"evn_type": "END",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "THROW",
"evn_operation_name": null,
"bou_x": "932",
"bou_y": "150",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
},
{
"evn_uid": "3305003195360fb453597f2096959601",
"evn_name": "Start # 1",
"evn_type": "START",
"evn_marker": "EMPTY",
"evn_is_interrupting": "1",
"evn_cancel_activity": "0",
"evn_activity_ref": null,
"evn_wait_for_completion": "0",
"evn_error_name": null,
"evn_error_code": null,
"evn_escalation_name": null,
"evn_escalation_code": null,
"evn_message": "LEAD",
"evn_operation_implementation_ref": null,
"evn_time_date": null,
"evn_time_cycle": null,
"evn_time_duration": null,
"evn_behavior": "CATCH",
"evn_operation_name": null,
"bou_x": "127",
"bou_y": "150",
"bou_width": "33",
"bou_height": "33",
"bou_container": "bpmnDiagram"
}
],
"gateways": [],
"flows": [
{
"flo_uid": "1622978925360fba9291611064641741",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "9008273035360fb4508c320094467351",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "1194280405360fb451aaba6003196951",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "380",
"flo_y1": "157",
"flo_x2": "455",
"flo_y2": "157",
"flo_state": [
{
"x": 385,
"y": 162
},
{
"x": 460,
"y": 162
}
]
},
{
"flo_uid": "2542949935360fbe55f6ed4023790635",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "1986563825360fb452569d2062760807",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "2574218295360fb5948cc54092613191",
"flo_element_dest_type": "bpmnEvent",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "852",
"flo_y1": "162",
"flo_x2": "927",
"flo_y2": "162",
"flo_state": [
{
"x": 857,
"y": 162
},
{
"x": 894,
"y": 162
},
{
"x": 894,
"y": 167
},
{
"x": 932,
"y": 167
}
]
},
{
"flo_uid": "6071665885360fbd11383d7068348078",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "1194280405360fb451aaba6003196951",
"flo_element_origin_type": "bpmnActivity",
"flo_element_dest": "1986563825360fb452569d2062760807",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "618",
"flo_y1": "157",
"flo_x2": "689",
"flo_y2": "157",
"flo_state": [
{
"x": 623,
"y": 162
},
{
"x": 694,
"y": 162
}
]
},
{
"flo_uid": "9390292005360fba928d357072869399",
"flo_type": "SEQUENCE",
"flo_name": null,
"flo_element_origin": "3305003195360fb453597f2096959601",
"flo_element_origin_type": "bpmnEvent",
"flo_element_dest": "9008273035360fb4508c320094467351",
"flo_element_dest_type": "bpmnActivity",
"flo_is_inmediate": "1",
"flo_condition": null,
"flo_x1": "155",
"flo_y1": "157",
"flo_x2": "217",
"flo_y2": "157",
"flo_state": [
{
"x": 160,
"y": 167
},
{
"x": 191,
"y": 167
},
{
"x": 191,
"y": 162
},
{
"x": 222,
"y": 162
}
]
}
],
"artifacts": [],
"laneset": [],
"lanes": []
}
]
}