Compares the variable specified by one of the selector attributes against the specified constant value. The nested body content of this tag is evaluated if the variable is greater than the value.
| Attributes |
| cookie |
The variable to be compared is the value of the cookie whose name is specified by this attribute. |
| |
| Required:
false |
| Request-time:
false |
Type:
java.lang.String |
|
| header |
The variable to be compared is the value of the header whose name is specified by this attribute. The name match is performed in a case insensitive manner. |
| |
| Required:
false |
| Request-time:
false |
Type:
java.lang.String |
|
| name |
The variable to be compared is the JSP bean specified by this attribute, if property is not specified, or the value of the specified property of this bean, if property is specified. |
| |
| Required:
false |
| Request-time:
false |
Type:
java.lang.String |
|
| parameter |
The variable to be compared is the first, or only, value of the request parameter specified by this attribute. |
| |
| Required:
false |
| Request-time:
false |
Type:
java.lang.String |
|
| property |
The variable to be compared is the property (of the bean specified by the name attribute) specified by this attribute. The property reference can be simple, nested, or indexed. |
| |
| Required:
false |
| Request-time:
false |
Type:
java.lang.String |
|
| scope |
The bean scope within which to search for the bean named by the name property, or "any scope" if not specified. |
| |
| Required:
false |
| Request-time:
false |
Type:
java.lang.String |
|
| value |
The constant value to which the variable, specified by other attribute(s) of this tag, will be compared. |
| |
| Required:
true |
| Request-time:
false |
Type:
java.lang.String |
|