Create an instance of the task appropriately. A subclass can override this method to get extra information from the node.
(self)
| 248 | return target_ref or self.bpmn_id |
| 249 | |
| 250 | def create_task(self): |
| 251 | """ |
| 252 | Create an instance of the task appropriately. A subclass can override |
| 253 | this method to get extra information from the node. |
| 254 | """ |
| 255 | return self.spec_class(self.spec, self.bpmn_id, **self.bpmn_attributes) |
| 256 | |
| 257 | def connect_outgoing(self, outgoing_task, sequence_flow_node, is_default): |
| 258 | """ |