Documentation

while

While statement for returning on first reject (default for all blocks)

while

Return on first reject (this is a default for all blocks).

Standalone action for the while pipeline directive.

This is usefull when you want to go back to default while behavior inside another pipeline directive.

Example


all {
    backend "VALIDATE_USER";
    while {
        backend "CHECK_PERMISSIONS";
        backend "VERIFY_LICENSE";
    }
}