Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Status
    colourPurple
    titleSince 11.27
    greaterThan

    • class : com.wedia.packaged.dam.triggers.datatransformers.impl.GreaterThan

    • init : java.lang.String or java.lang.Number The number to compare input with

    • input : java.lang.Integer int value to compare

    • output : true if input is strictly greater than init

  • Status
    colourPurple
    titleSince 11.27
    countCommon

    • class : com.wedia.packaged.dam.triggers.datatransformers.impl.CountCommonValues

    • init : null (default) or java.lang.Stringor JSON array of java.lang.String

    • input : String output transform or Array of String output transforms

    • output : number of common values between input and init (case sensitive)

  • Status
    colourPurple
    titleSince 11.28
    negate

    • class : com.wedia.packaged.dam.triggers.datatransformers.impl.NegationTransformer

    • init: none

    • input : any

    • output :

      • null if input is null

      • !input if input is a Boolean

      • !Boolean.parseBoolean(input.toString()) else

  • Status
    colourPurple
    titleSince 11.30
    every

    • 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 a Boolean, false. If input is a single transform, returns the output of the single transform.

  • Status
    colourPurple
    titleSince 11.30
    isAllowed

    • class: com.wedia.packaged.dam.triggers.datatransformers.impl.IsAllowedBySecurity

    • init: null or JSONObject; 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 and surfer 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

...