-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Element Templates Feature Can Update Versions #399
Comments
List of complex properties:camunda:PropertyCan be identified by Example: camunda:InputParameterCan be identified by Example: camunda:OutputParameterCan be identified by Example: camunda:InCan be identified by Example: camunda:OutCan be identified by Example: camunda:ExecutionListenerExecution listeners are always hidden and therefore can be overridden. Only execution listeners with scripts can be created through templates. Examples: <camunda:executionListener class="Foo.java" event="start" />
<camunda:executionListener class="Foo.java" event="start">
<camunda:field name="foo">
<camunda:string>bar</camunda:string>
</camunda:field>
</camunda:executionListener>
<camunda:executionListener expression="${foo}" event="start" />
<camunda:executionListener delegateExpression="${foo}" event="start" />
<camunda:executionListener event="start">
<camunda:script scriptFormat="FooScript">console.log('foo');</camunda:script>
</camunda:executionListener> camunda:FieldCan be identified by Examples: <camunda:field name="foo">
<camunda:string>bar</camunda:string>
</camunda:field>
<camunda:field name="foo">
<camunda:expression>${bar}</camunda:expression>
</camunda:field> Scope Elementscamunda:ConnectorCan be identified by Example: <camunda:connector>
<camunda:inputOutput>
<camunda:inputParameter name="foo">foo</camunda:inputParameter>
<camunda:outputParameter name="bar">bar</camunda:outputParameter>
</camunda:inputOutput>
<camunda:connectorId>foo</camunda:connectorId>
</camunda:connector> |
camunda:In
,camunda:Out
,camunda:ExecutionListener
) will be handled according to these rules if they can be identifiedExamples:
Child of camunda/camunda-modeler#1969
The text was updated successfully, but these errors were encountered: