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

📄 webauthenticationdetails.java

📁 acegi构造安全的java系统
💻 JAVA
字号:
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.acegisecurity.ui;import org.acegisecurity.concurrent.SessionIdentifierAware;import java.io.Serializable;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpSession;/** * A holder of selected HTTP details related to a web authentication request. * * @author Ben Alex * @version $Id: WebAuthenticationDetails.java 1496 2006-05-23 13:38:33Z benalex $ */public class WebAuthenticationDetails implements SessionIdentifierAware, Serializable {    //~ Instance fields ================================================================================================    private String remoteAddress;    private String sessionId;    //~ Constructors ===================================================================================================/**     * Constructor.     *      * <p>     * NB: This constructor will cause a <code>HttpSession</code> to be created     * (this is considered reasonable as all Acegi Security authentication     * requests rely on <code>HttpSession</code> to store the     * <code>Authentication</code> between requests     * </p>     *     * @param request that the authentication request was received from     */    public WebAuthenticationDetails(HttpServletRequest request) {        this.remoteAddress = request.getRemoteAddr();        HttpSession session = request.getSession(false);        this.sessionId = (session != null) ? session.getId() : null;        doPopulateAdditionalInformation(request);    }    protected WebAuthenticationDetails() {        throw new IllegalArgumentException("Cannot use default constructor");    }    //~ Methods ========================================================================================================    /**     * Provided so that subclasses can populate additional information.     *     * @param request that the authentication request was received from     */    protected void doPopulateAdditionalInformation(HttpServletRequest request) {}    public boolean equals(Object obj) {        if (obj instanceof WebAuthenticationDetails) {            WebAuthenticationDetails rhs = (WebAuthenticationDetails) obj;            if ((remoteAddress == null) && (rhs.getRemoteAddress() != null)) {                return false;            }            if ((remoteAddress != null) && (rhs.getRemoteAddress() == null)) {                return false;            }            if (remoteAddress != null) {                if (!remoteAddress.equals(rhs.getRemoteAddress())) {                    return false;                }            }            if ((sessionId == null) && (rhs.getSessionId() != null)) {                return false;            }            if ((sessionId != null) && (rhs.getSessionId() == null)) {                return false;            }            if (sessionId != null) {                if (!sessionId.equals(rhs.getSessionId())) {                    return false;                }            }            return true;        }        return false;    }    /**     * Indicates the TCP/IP address the authentication request was received from.     *     * @return the address     */    public String getRemoteAddress() {        return remoteAddress;    }    /**     * Indicates the <code>HttpSession</code> id the authentication request was received from.     *     * @return the session ID     */    public String getSessionId() {        return sessionId;    }    public int hashCode() {        int code = 7654;        if (this.remoteAddress != null) {            code = code * (this.remoteAddress.hashCode() % 7);        }        if (this.sessionId != null) {            code = code * (this.sessionId.hashCode() % 7);        }        return code;    }    public String toString() {        StringBuffer sb = new StringBuffer();        sb.append(super.toString() + ": ");        sb.append("RemoteIpAddress: " + this.getRemoteAddress() + "; ");        sb.append("SessionId: " + this.getSessionId());        return sb.toString();    }}

⌨️ 快捷键说明

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