⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checkpropertyequalstag.java

📁 这是linux下ssl vpn的实现程序
💻 JAVA
字号:
/*
 *  SSL-Explorer
 *
 *  Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version 2 of
 *  the License, or (at your option) any later version.
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public
 *  License along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
			
package com.sslexplorer.core.tags;

import javax.servlet.jsp.tagext.TagSupport;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.sslexplorer.core.CoreServlet;
import com.sslexplorer.core.CoreUtil;
import com.sslexplorer.security.InvalidTicketException;
import com.sslexplorer.security.User;

public class CheckPropertyEqualsTag extends TagSupport {

    final static Log log = LogFactory.getLog(CheckPropertyEqualsTag.class);

    String propertyName;
    String propertyValue;
    boolean regExp;
    boolean userProfile;

    public CheckPropertyEqualsTag() {
    }

    public int doStartTag() {

        User user = null;
        try {
            user = CoreServlet.getServlet().getLogonController().getUser(pageContext.getSession(), null);
        } catch (InvalidTicketException ex) {
        }
        int profile = userProfile ? -1 : 0;
        String val;
        try {
            val = CoreServlet.getServlet().getPropertyDatabase().getProperty(
                profile == -1 ? CoreUtil.getCurrentPropertyProfileId(pageContext.getSession()) : profile,
                user == null ? null : user.getPrincipalName(), propertyName);
            if (regExp) {
                if (val.matches(propertyValue)) {
                    return EVAL_BODY_INCLUDE;
                } else {
                    return SKIP_BODY;
                }
            } else {
                if (propertyValue.equals(val)) {
                    return EVAL_BODY_INCLUDE;
                } else {
                    return SKIP_BODY;
                }
            }
        } catch (Exception e) {
            log.error("Could not determine property value.", e);
            return SKIP_BODY;
        }
    }

    public void setUserProfile(boolean userProfile) {
        this.userProfile = userProfile;
    }

    public void setRegExp(boolean regExp) {
        this.regExp = regExp;
    }

    public void setPropertyName(String propertyName) {
        this.propertyName = propertyName;
    }

    public void setPropertyValue(String propertyValue) {
        this.propertyValue = propertyValue;
    }

    public void release() {
        super.release();
        userProfile = false;
        regExp = false;
        propertyName = null;
        propertyValue = null;
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -