?? ifuserinroletag.java
字號:
package com.ora.jsp.tags;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import javax.servlet.jsp.jstl.core.*;
import org.apache.taglibs.standard.lang.support.*;
/**
* This class is a custom action for testing if the current (authenticated)
* user belongs to the specified security role.
* If he/she is, the body is evaluated. If a var attribute is provided,
* the result is also saved as a Boolean variable in the specified
* scope, or in the page if no scope is specified.
*
* @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
* @version 2.0
*/
public class IfUserInRoleTag extends ConditionalTagSupport {
private String valueEL;
public void setValue(String value) {
valueEL = value;
}
public boolean condition() throws JspTagException {
/*
* Evaluate the EL expression, if any
*/
String role = null;
try {
role = (String)
ExpressionEvaluatorManager.evaluate("value", valueEL,
String.class, this, pageContext);
}
catch (JspException e) {
throw new JspTagException(e.getMessage());
}
HttpServletRequest request =
(HttpServletRequest) pageContext.getRequest();
return request.isUserInRole(role);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -