property match
Determines if a property matches a pattern.
Arguments
- property
- The property name to match on.
- match
- The pattern to match the property on.
Remarks
This condition allows you to take action based on the value of a property.
Examples
To forbid access to a URL based on the value of a property, use:
<if property="access-level" match="^private$" /> <forbidden /> </if>