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

📄 cookieproperties.java

📁 这是远程web服务调用的一个包,可以将JSP直接作为服务
💻 JAVA
字号:
package com.meterware.httpunit.cookies;import java.util.ArrayList;import java.util.List;import java.util.Iterator;/******************************************************************************************************************** * $Id: CookieProperties.java,v 1.2 2004/02/12 13:03:24 russgold Exp $ * * Copyright (c) 2003-2004, Russell Gold * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated * documentation files (the "Software"), to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and * to permit persons to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions * of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * *******************************************************************************************************************//** * Controls behavior for cookies. */public class CookieProperties {    /** If true, domain matching follows the spec. If false, permits any domain which is a prefix of the host. **/    private static boolean _domainMatchingStrict = true;    /** If true, path matching follows the spec. If false, permits any path. **/    private static boolean _pathMatchingStrict = true;    /** A collection of listeners for cookie events. **/    private static ArrayList _listeners;    public static void reset() {        _domainMatchingStrict = true;        _pathMatchingStrict = true;        _listeners = null;    }    /**     * Returns true (the default) if cookies should be rejected if they specify a domain which is not a suffix     * of the host domain or does not contain all of the dots in that host domain name     * (see <a href="http://www.faqs.org/rfcs/rfc2965.html">RFC2965</a>).     */    public static boolean isDomainMatchingStrict() {        return _domainMatchingStrict;    }    /**     * Specifies whether strict domain name matching must be followed.     */    public static void setDomainMatchingStrict( boolean domainMatchingStrict ) {        _domainMatchingStrict = domainMatchingStrict;    }    /**     * Returns true (the default) if cookies should be rejected if they specify a path which is not a prefix     * of the request path (see <a href="http://www.faqs.org/rfcs/rfc2965.html">RFC2965</a>).     */    public static boolean isPathMatchingStrict() {        return _pathMatchingStrict;    }    /**     * Specifies whether strict path name matching must be followed.     */    public static void setPathMatchingStrict( boolean pathMatchingStrict ) {        _pathMatchingStrict = pathMatchingStrict;    }    /**     * Adds a listener for cookie events.     */    public static void addCookieListener( CookieListener listener ) {        if (_listeners == null) _listeners = new ArrayList();        synchronized( _listeners ) {            _listeners.add( listener );        }    }    public static void reportCookieRejected( int reason, String attribute, String source ) {        if (_listeners == null) return;        List listeners;        synchronized( _listeners ) {            listeners = (List) _listeners.clone();        }        for (Iterator i = listeners.iterator(); i.hasNext();) {            ((CookieListener) i.next()).cookieRejected( source, reason, attribute );        }    }}

⌨️ 快捷键说明

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