Subversion Repositories bacoAlunos

Rev

Rev 1312 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1312 Rev 1346
Line 59... Line 59...
59
 
59
 
60
    public boolean go() throws JspException
60
    public boolean go() throws JspException
61
    {
61
    {
62
        UserSessionImpl userSession = (UserSessionImpl) UserSessionProxy.loadUserSessionFromRequest((HttpServletRequest) pageContext.getRequest());
62
        UserSessionImpl userSession = (UserSessionImpl) UserSessionProxy.loadUserSessionFromRequest((HttpServletRequest) pageContext.getRequest());
63
        ClearanceRuled ruledObj = (ClearanceRuled) RequestUtils.lookup(pageContext, name, property, null);
63
        ClearanceRuled ruledObj = (ClearanceRuled) RequestUtils.lookup(pageContext, name, property, null);
-
 
64
        1.5.0/docs/api/java/lang/String.html">String[] ops = op.split(",");
-
 
65
        for(1.5.0/docs/api/java/lang/String.html">String opSub: ops)
-
 
66
        {
64
        return ruledObj.isClear(userSession,op);
67
            if(ruledObj.isClear(userSession,opSub))
-
 
68
            {
-
 
69
                return true;
-
 
70
            }
-
 
71
        }
-
 
72
        return false;
65
    }
73
    }
66
 
74
 
67
    public int doEndTag() throws JspException
75
    public int doEndTag() throws JspException
68
    {
76
    {
69
 
77