|
NAMEWorkflow::Condition::Negated - Negate workflow condition resultVERSIONThis documentation describes version 1.60 of this packageDESCRIPTIONThis class is used by "Workflow::State" to handle negated conditions: conditions of which the referring name starts with an exclamation mark (!).Such conditions refer to another condition (by the name after the '!') and return the negated result of the condition referred to (true becomes false while false becomes true). SYNOPSISIn condition.xml:<condition name="check_approvals" class="..."> </condition> In workflow.xml: <state name="CHECK_APPROVALS" autorun="yes"> <action name="null_1" resulting_state="APPROVED"> <condition name="check_approvals" /> </action> <action name="null_2" resulting_state="REJECTED"> <condition name="!check_approvals" /> </action> </state> AUTHORSSee WorkflowCOPYRIGHTCopyright (c) 2004-2022 Chris Winters. All rights reserved.This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. Please see the LICENSE AUTHORSPlease see Workflow
Visit the GSP FreeBSD Man Page Interface. |