Skip to content

Commit

Permalink
Fix process to use java syntax for the onEntry script
Browse files Browse the repository at this point in the history
  • Loading branch information
martinweiler committed Dec 18, 2024
1 parent 0b90de2 commit 907450e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
<startEvent id="_1" name="StartProcess" />
<userTask id="_2" name="Hello" tns:taskName="Human Task">
<extensionElements>
<tns:onEntry-script>
<tns:script>System.out.println("Hello");context.setVariable("itemOut", "test");</tns:script>
<tns:onEntry-script scriptFormat="http://www.java.com/java">
<tns:script>System.out.println("Hello");kcontext.setVariable("itemOut", "test");</tns:script>
</tns:onEntry-script>
</extensionElements>
<ioSpecification>
Expand Down

0 comments on commit 907450e

Please sign in to comment.