Versions Compared

Key

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

Description

This handler compares the value of a process variable with the border (threshold) value passed to it and sets a new process variable. This will be used later in the process with the help of the VariableDecisionHandlerto send the process in the right direction.

...

Class

Code Block
com.dooris.bpm.actionhandler.BorderValueHandler

Parameter

Parameter

Default value

Description

Valid examples

variableName

Name of the variable containing the amount to be valuated.

name_of_the_example_variable

borders

This indicates the threshold values with which the figure will be matched, as well as the potential content of the new process variable (separated by spaces and question mark).

The transitions based on the VariableDecisionHandlerrequire technically unique names that reflect the potential content.

Note

Coding the threshold value sign: 

Code Block
>   -->  GT
<   -->  LT
>=  -->  GTEQUALS
<=  -->  LTEQUALS

LT 25000 kstv1?GTEQUALS 25000 kstv2?GTEQUALS 50000 kstv3?GTEQUALS 100000 kst4?GTEQUALS 150000 kstv5;

decisionName

Name of the new process variable that can guide the process with the VariableDecisionHandlerin the right direction.

name_of_the_new_variable

...