|
|
| |
OpenXPKI::Server::Workflow::Condition::DatapoolEntry(3) |
User Contributed Perl Documentation |
OpenXPKI::Server::Workflow::Condition::DatapoolEntry(3) |
OpenXPKI::Server::Workflow::Condition::DatapoolEntry
Checks if the specified datapool entry exists, is not empty or matches a given
string or regex.
- namespace
- check entries in this namespace (required)
- key
- checks are applied to this datapool entry
- condition
- type of check
- exists
- true if an item with the given namespace/key exists
- notnull
- true if the item defined by namespace/key has an non-empty value. This
case is today almost equal to exists, as the default API methods
dont allow to set an empty value to the datapool.
- equals
- true if the datapool value is equal to the string provided via
value. The check is done as a string comparison, so be aware if you
compare numbers.
- regex
- Compiles value to a regex with modifiers /ms and compares it
against the value from the datapool. A non-existing (or empty) value will
match the empty string.
- value
- comparison value for regex or equals check
Visit the GSP FreeBSD Man Page Interface. Output converted with ManDoc. |