...
greaterThanStatus colour Purple title Since 11.27 class :
com.wedia.packaged.dam.triggers.datatransformers.impl.GreaterThan
init :
java.lang.String
orjava.lang.Number
The number to compare input withinput :
java.lang.Integer
int value to compareoutput :
true
if input is strictly greater than init
countCommonStatus colour Purple title Since 11.27 class :
com.wedia.packaged.dam.triggers.datatransformers.impl.CountCommonValues
init :
null
(default) orjava.lang.String
or JSON array ofjava.lang.String
input : String output transform or Array of String output transforms
output : number of common values between input and init (case sensitive)
negateStatus colour Purple title Since 11.28 class :
com.wedia.packaged.dam.triggers.datatransformers.impl.NegationTransformer
init: none
input :
any
output :
null
if input isnull
!input
if input is aBoolean
!Boolean.parseBoolean(input.toString())
else
everyStatus colour Purple title Since 11.30 class:
com.wedia.packaged.dam.triggers.datatransformers.impl.EveryTransformer
init: none
input: Collection of transforms or single transform
output: if a Collection of transforms is given as input, will set output to true if none of given inputs returns an output of
null
, something different than aBoolean
,false
. If input is a single transform, returns the output of the single transform.
isAllowedStatus colour Purple title Since 11.30 class:
com.wedia.packaged.dam.triggers.datatransformers.impl.IsAllowedBySecurity
init:
null
orJSONObject
; object can contain following keys:domain
: Security domain name (default:objectdata
)action
: Security action (default:update
)params
: Object containing String values that are added before calling the security rule.objectname
,object
andsurfer
are automatically added by the transformer
input: none
output:
true
if surfer is allowed to perform action described in init, false otherwise
Trigger metadata extraction manually
...