🚀 JWT 3.0 is out 🚀 

The app was completely overhauled, and so was the documentation: Jira Workflow Toolbox (Server/Data Center) Home

The page you are viewing is still valid for all app versions prior to 3.0.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

On this page


SINCE VERSION 2.6.0

Since version 2.6.0 it is now possible to store values. Having this capability makes it possible to reference these values later on in the expression.


Example

Before value storageAfter value storage
toNumber(
count(
issuesFromJQL("issue in linkedIssues('" + %{Issue key} + "','blocks','is blocked by')")
)
) > 5 ?
"<font color=\"red\">" + toNumber(
count(
issuesFromJQL("issue in linkedIssues('" + %{Issue key} + "','blocks','is blocked by')")
)
) + "</font>"
: "<font color=\"green\">" + toNumber(
count(
issuesFromJQL("issue in linkedIssues('" + %{Issue key} + "','blocks','is blocked by')")
)
) + "</font>"

setNumber("x",

toNumber(

count(

issuesFromJQL("issue in linkedIssues('" + %{Issue key} + "','blocks','is blocked by')")

)

)

) > 5 ? "

<font color=\"red\">" + getNumber("x") + "</font>"

: "<font color=\"green\">" + getNumber("x") + "</font>"

Expressions

FunctionReturned value
setNumber(string variable_name, number value) : numberReturns value and stores it into an internal numerical variable called variable_name.
getNumber(string variable_name) : numberReturns the numeric value stored into internal variable called variable_name.
setString(string variable_name, string value) : stringReturns value and stores it into an internal string variable called variable_name.
getString(string variable_name) : stringReturns the string value stored into internal variable called variable_name.
setNumberList(string variable_name, number list value) : number listReturns value and stores it into an internal numerical list variable called variable_name.
getNumberList(string variable_name) : number listReturns number list value stored into an internal variable called variable_name.
setStringList(string variable_name, string list value) : string listReturns value and stores it into an internal string list variable called variable_name.
getStringList(string variable_name) : string listReturns string list value stored into an internal variable called variable_name.
setIssueList(string variable_name, issue list value) : issue listReturns value and stores it into an internal issue list variable called variable_name.
getIssueList(string variable_name) : issue listReturns issue list value stored into an internal variable called variable_name.
setBoolean(string variable_name, boolean value) : booleanReturns value and stores it into an internal variable variable called variable_name.
getBoolean(string variable_name) : booleanReturns boolean value stored into an internal variable called variable_name.


Note that every setter method always returns the stored value so that it can be immediately used for saving and calling the value in the expression (as seen in the example above).

The values are only going to be saved for the current expression and cannot be reused in another expression.