You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
705 B
Groovy
24 lines
705 B
Groovy
/****************************************
|
|
insert process variable values start
|
|
*****************************************/
|
|
def processVariables = [:]
|
|
processVariables.result = creation_user_id + " is not a cat"
|
|
|
|
/****************************************
|
|
insert process variable values end
|
|
*****************************************/
|
|
/****************************************
|
|
insert local variable values start
|
|
*****************************************/
|
|
def localVariables = [:]
|
|
|
|
/****************************************
|
|
insert local variable values end
|
|
*****************************************/
|
|
|
|
def result = [
|
|
processVariables:processVariables,
|
|
localVariables:localVariables
|
|
]
|
|
|
|
return result; |