1 package org.saf.struts.taglib;
2
3 import javax.servlet.jsp.JspException;
4
5
6 /***
7 * Shows the tag's body if the user is not authorized.
8 *
9 * @author Wim Tobback
10 * @version 1.0
11 *
12 * @since 1.0
13 */
14 public class NotAuthorizedTag extends AuthorizedTag {
15 private static final long serialVersionUID = 1L;
16
17 /***
18 * @see org.apache.struts.taglib.logic.ConditionalTagBase#condition()
19 */
20 protected boolean condition() throws JspException {
21 return condition(false);
22 }
23 }