mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-15 04:34:16 +00:00
7c219fd731
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
18 lines
352 B
Python
18 lines
352 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from .ScriptTask import ScriptEngineTask
|
|
|
|
|
|
class ServiceTask(ScriptEngineTask):
|
|
|
|
"""
|
|
Task Spec for a bpmn:serviceTask node.
|
|
"""
|
|
|
|
def __init__(self, wf_spec, name, **kwargs):
|
|
super(ServiceTask, self).__init__(wf_spec, name, **kwargs)
|
|
|
|
@property
|
|
def spec_type(self):
|
|
return 'Service Task'
|