Tag Summary |
attribute | Set the value of the given attribute on the enclosing component, to be evaluated as EL only during the RENDER_RESPONSE phase. Implemented by simply updating the attributes map of the component every time the tag is evaluated (while the view is being [re]built). |
checkRole | Check to see that the current logged in user is authorized to certain role(s) (or not) before evaluating the nested tags. |
keepAlive | Store an EL expression into the current view scope. The expression's value will be restored after the view is rebuilt. |
logOut | Add an action handler to the enclosing component that invalidates the current session. |
message | Read all matching messages from the current FacesContext. Store the result as a list into the target EL expression. |
parameter | Create an action listener that reads a value from the request pararmeter map. The value will be stored in the target. If the parameter occurs more than once, the target will be updated once for each value. You may optinally register a converter to translate the parameter data before it is stored into the target. |
responseActions | A component that contains a series of actions to be executed when the response is rendered. Any ActionListeners registered within this component will be called during the RENDER_RESPONSE phase regardless of whether the request is a postback. |