Groovy Filter

This filter let you use a groovy script to filter your actors. It takes in input a set of String bind in the variable candidates, and must return a set of String.

Here is a simple example :

def result = [] candidates.each { if(it ==~ /Romain.*/) result.add(it) }

result as Set

This example parse the candidates in input and return a Set of String matching the regex (name beginning by Romain)

KNOWN LIMITATION : Your script must not use the groovy markers '${' and '}' (set by the editor)

Category: 
Licence: 
GPL v2

Downloads

Total downloads: 1 673
Version BonitaBPM Version Post date Download Link to content
1.2 5.x 2010-Jun-02 Download
574 downloads
Release note
1.1 5.x 2010-Mar-23 Download
541 downloads
Release note
1.0 5.x 2010-Mar-15 Download
558 downloads
Release note
Downloads: 
8
Notifications