亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? httpstate.java

?? 高性能分詞算法
?? JAVA
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
     * @deprecated Use      * {@link org.apache.commons.httpclient.params.HttpClientParams#setAuthenticationPreemptive(boolean)},      * {@link HttpClient#getParams()}.     */        public void setAuthenticationPreemptive(boolean value) {        this.preemptive = value;    }    /**     * Returns <tt>true</tt> if preemptive authentication should be      * attempted, <tt>false</tt> otherwise.     *      * @return boolean flag.     *      * @deprecated Use      * {@link org.apache.commons.httpclient.params.HttpClientParams#isAuthenticationPreemptive()},      * {@link HttpClient#getParams()}.     */        public boolean isAuthenticationPreemptive() {        return this.preemptive;    }        /**     * Sets the current {@link CookiePolicy cookie policy} for this HTTP     * state to one of the following supported policies:      * {@link CookiePolicy#COMPATIBILITY},      * {@link CookiePolicy#NETSCAPE_DRAFT} or     * {@link CookiePolicy#RFC2109}.     *      * @param policy new {@link CookiePolicy cookie policy}     *      * @deprecated      *  Use {@link org.apache.commons.httpclient.params.HttpMethodParams#setCookiePolicy(String)},     *  {@link HttpMethod#getParams()}.          */        public void setCookiePolicy(int policy) {        this.cookiePolicy = policy;    }    /**      * Sets the {@link Credentials credentials} for the given authentication      * realm on the given host. The <code>null</code> realm signifies default      * credentials for the given host, which should be used when no      * {@link Credentials credentials} have been explictly supplied for the      * challenging realm. The <code>null</code> host signifies default      * credentials, which should be used when no {@link Credentials credentials}      * have been explictly supplied for the challenging host. Any previous      * credentials for the given realm on the given host will be overwritten.     *      * @param realm the authentication realm     * @param host the host the realm belongs to     * @param credentials the authentication {@link Credentials credentials}      * for the given realm.     *      * @see #getCredentials(String, String)     * @see #setProxyCredentials(String, String, Credentials)      *      * @deprecated use #setCredentials(AuthScope, Credentials)     */        public synchronized void setCredentials(String realm, String host, Credentials credentials) {        LOG.trace("enter HttpState.setCredentials(String, String, Credentials)");        credMap.put(new AuthScope(host, AuthScope.ANY_PORT, realm, AuthScope.ANY_SCHEME), credentials);    }    /**      * Sets the {@link Credentials credentials} for the given authentication      * scope. Any previous credentials for the given scope will be overwritten.     *      * @param authscope the {@link AuthScope authentication scope}     * @param credentials the authentication {@link Credentials credentials}      * for the given scope.     *      * @see #getCredentials(AuthScope)     * @see #setProxyCredentials(AuthScope, Credentials)      *      * @since 3.0     */    public synchronized void setCredentials(final AuthScope authscope, final Credentials credentials) {        if (authscope == null) {            throw new IllegalArgumentException("Authentication scope may not be null");        }        LOG.trace("enter HttpState.setCredentials(AuthScope, Credentials)");        credMap.put(authscope, credentials);    }    /**     * Find matching {@link Credentials credentials} for the given authentication scope.     *     * @param map the credentials hash map     * @param token the {@link AuthScope authentication scope}     * @return the credentials      *      */    private static Credentials matchCredentials(final HashMap map, final AuthScope authscope) {        // see if we get a direct hit        Credentials creds = (Credentials)map.get(authscope);        if (creds == null) {            // Nope.            // Do a full scan            int bestMatchFactor  = -1;            AuthScope bestMatch  = null;            Iterator items = map.keySet().iterator();            while (items.hasNext()) {                AuthScope current = (AuthScope)items.next();                int factor = authscope.match(current);                if (factor > bestMatchFactor) {                    bestMatchFactor = factor;                    bestMatch = current;                }            }            if (bestMatch != null) {                creds = (Credentials)map.get(bestMatch);            }        }        return creds;    }        /**     * Get the {@link Credentials credentials} for the given authentication scope on the      * given host.     *     * If the <i>realm</i> exists on <i>host</i>, return the coresponding credentials.     * If the <i>host</i> exists with a <tt>null</tt> <i>realm</i>, return the corresponding     * credentials.     * If the <i>realm</i> exists with a <tt>null</tt> <i>host</i>, return the     * corresponding credentials.  If the <i>realm</i> does not exist, return     * the default Credentials.  If there are no default credentials, return     * <code>null</code>.     *     * @param realm the authentication realm     * @param host the host the realm is on     * @return the credentials      *      * @see #setCredentials(String, String, Credentials)     *      * @deprecated use #getCredentials(AuthScope)     */        public synchronized Credentials getCredentials(String realm, String host) {        LOG.trace("enter HttpState.getCredentials(String, String");        return matchCredentials(this.credMap,             new AuthScope(host, AuthScope.ANY_PORT, realm, AuthScope.ANY_SCHEME));    }    /**     * Get the {@link Credentials credentials} for the given authentication scope.     *     * @param authscope the {@link AuthScope authentication scope}     * @return the credentials      *      * @see #setCredentials(AuthScope, Credentials)     *      * @since 3.0     */    public synchronized Credentials getCredentials(final AuthScope authscope) {        if (authscope == null) {            throw new IllegalArgumentException("Authentication scope may not be null");        }        LOG.trace("enter HttpState.getCredentials(AuthScope)");        return matchCredentials(this.credMap, authscope);    }    /**     * Sets the {@link Credentials credentials} for the given proxy authentication      * realm on the given proxy host. The <code>null</code> proxy realm signifies      * default credentials for the given proxy host, which should be used when no      * {@link Credentials credentials} have been explictly supplied for the      * challenging proxy realm. The <code>null</code> proxy host signifies default      * credentials, which should be used when no {@link Credentials credentials}      * have been explictly supplied for the challenging proxy host. Any previous      * credentials for the given proxy realm on the given proxy host will be      * overwritten.     *     * @param realm the authentication realm     * @param proxyHost the proxy host     * @param credentials the authentication credentials for the given realm     *      * @see #getProxyCredentials(AuthScope)     * @see #setCredentials(AuthScope, Credentials)     *      * @deprecated use #setProxyCredentials(AuthScope, Credentials)     */    public synchronized void setProxyCredentials(        String realm,         String proxyHost,         Credentials credentials    ) {        LOG.trace("enter HttpState.setProxyCredentials(String, String, Credentials");        proxyCred.put(new AuthScope(proxyHost, AuthScope.ANY_PORT, realm, AuthScope.ANY_SCHEME), credentials);    }    /**      * Sets the {@link Credentials proxy credentials} for the given authentication      * realm. Any previous credentials for the given realm will be overwritten.     *      * @param authscope the {@link AuthScope authentication scope}     * @param credentials the authentication {@link Credentials credentials}      * for the given realm.     *      * @see #getProxyCredentials(AuthScope)     * @see #setCredentials(AuthScope, Credentials)      *      * @since 3.0     */    public synchronized void setProxyCredentials(final AuthScope authscope,         final Credentials credentials)    {        if (authscope == null) {            throw new IllegalArgumentException("Authentication scope may not be null");        }        LOG.trace("enter HttpState.setProxyCredentials(AuthScope, Credentials)");        proxyCred.put(authscope, credentials);    }    /**     * Get the {@link Credentials credentials} for the proxy host with the given      * authentication scope.     *     * If the <i>realm</i> exists on <i>host</i>, return the coresponding credentials.     * If the <i>host</i> exists with a <tt>null</tt> <i>realm</i>, return the corresponding     * credentials.     * If the <i>realm</i> exists with a <tt>null</tt> <i>host</i>, return the     * corresponding credentials.  If the <i>realm</i> does not exist, return     * the default Credentials.  If there are no default credentials, return     * <code>null</code>.     *      * @param realm the authentication realm     * @param proxyHost the proxy host the realm is on     * @return the credentials      * @see #setProxyCredentials(String, String, Credentials)     *      * @deprecated use #getProxyCredentials(AuthScope)     */    public synchronized Credentials getProxyCredentials(String realm, String proxyHost) {       LOG.trace("enter HttpState.getCredentials(String, String");        return matchCredentials(this.proxyCred,             new AuthScope(proxyHost, AuthScope.ANY_PORT, realm, AuthScope.ANY_SCHEME));    }        /**     * Get the {@link Credentials proxy credentials} for the given authentication scope.     *     * @param authscope the {@link AuthScope authentication scope}     * @return the credentials      *      * @see #setProxyCredentials(AuthScope, Credentials)     *      * @since 3.0     */    public synchronized Credentials getProxyCredentials(final AuthScope authscope) {        if (authscope == null) {            throw new IllegalArgumentException("Authentication scope may not be null");        }        LOG.trace("enter HttpState.getProxyCredentials(AuthScope)");        return matchCredentials(this.proxyCred, authscope);    }    /**     * Returns a string representation of this HTTP state.     *      * @return The string representation of the HTTP state.     *      * @see java.lang.Object#toString()     */    public synchronized String toString() {        StringBuffer sbResult = new StringBuffer();        sbResult.append("[");        sbResult.append(getCredentialsStringRepresentation(proxyCred));        sbResult.append(" | ");        sbResult.append(getCredentialsStringRepresentation(credMap));        sbResult.append(" | ");        sbResult.append(getCookiesStringRepresentation(cookiesMap.values())); // <- IA/HERITRIX CHANGE        sbResult.append("]");        String strResult = sbResult.toString();        return strResult;    }        /**     * Returns a string representation of the credentials.     * @param credMap The credentials.     * @return The string representation.     */    private static String getCredentialsStringRepresentation(final Map credMap) {        StringBuffer sbResult = new StringBuffer();        Iterator iter = credMap.keySet().iterator();        while (iter.hasNext()) {            Object key = iter.next();            Credentials cred = (Credentials) credMap.get(key);            if (sbResult.length() > 0) {                sbResult.append(", ");            }            sbResult.append(key);            sbResult.append("#");            sbResult.append(cred.toString());        }        return sbResult.toString();    }        /**     * Returns a string representation of the cookies.     * @param cookies The cookies     * @return The string representation.     */    private static String getCookiesStringRepresentation(final Collection cookies) { // <- IA/HERITRIX CHANGE        StringBuffer sbResult = new StringBuffer();        Iterator iter = cookies.iterator();        while (iter.hasNext()) {            Cookie ck = (Cookie) iter.next();            if (sbResult.length() > 0) {                sbResult.append("#");            }            sbResult.append(ck.toExternalForm());        }        return sbResult.toString();    }        /**     * Clears all credentials.     */    public void clearCredentials() {        this.credMap.clear();    }        /**     * Clears all proxy credentials.     */    public void clearProxyCredentials() {        this.proxyCred.clear();    }        /**     * Clears all cookies.     */    public void clearCookies() {// BEGIN IA/HERITRIX CHANGES//        this.cookiesArrayList.clear();        this.cookiesMap.clear();// END IA/HERITRIX CHANGES    }        /**     * Clears the state information (all cookies, credentials and proxy credentials).     */    public void clear() {        clearCookies();        clearCredentials();        clearProxyCredentials();    }}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
宅男噜噜噜66一区二区66| 国产乱子轮精品视频| 日本亚洲天堂网| 国模少妇一区二区三区| www.亚洲在线| 这里只有精品99re| 在线亚洲高清视频| 欧美国产日本韩| 亚洲视频在线观看一区| 日韩不卡一区二区三区| 国产.精品.日韩.另类.中文.在线.播放 | 日韩制服丝袜av| 日本韩国欧美三级| 91精品国产91久久综合桃花| 国产精品视频在线看| 日韩中文字幕一区二区三区| 国产91丝袜在线观看| 精品视频一区二区三区免费| 久久精品综合网| 亚洲大尺度视频在线观看| 国产精品一区二区黑丝| 欧美日韩大陆在线| 中文字幕一区二区在线播放| 美女视频黄免费的久久| 日本精品一级二级| 国产视频一区二区在线| 日韩高清在线电影| 91蝌蚪porny成人天涯| 精品国产乱码久久久久久图片 | 99久久99久久精品免费观看| 91精品国产福利在线观看| 中文字幕中文乱码欧美一区二区| 免费看精品久久片| 欧美最猛黑人xxxxx猛交| 国产日韩欧美亚洲| 麻豆精品一区二区av白丝在线| 色94色欧美sute亚洲线路二| 国产日韩精品一区二区三区| 美女一区二区在线观看| 欧美日韩一本到| 欧美激情一区二区| 韩国毛片一区二区三区| 538在线一区二区精品国产| 亚洲欧美日韩在线播放| 成人一级黄色片| 久久久久久久国产精品影院| 美女性感视频久久| 欧美日韩美少妇| 亚洲综合色区另类av| 99久久精品免费精品国产| 久久中文娱乐网| 毛片一区二区三区| 欧美人体做爰大胆视频| 亚洲综合色自拍一区| 91美女片黄在线观看| 国产精品青草久久| 国产高清不卡二三区| 久久色成人在线| 久久精品国产亚洲aⅴ| 日韩一卡二卡三卡四卡| 婷婷中文字幕综合| 欧美日韩视频在线第一区| 亚洲一区二区三区四区五区黄| 色一情一乱一乱一91av| 青青草国产成人av片免费| 91 com成人网| 日韩高清一级片| 日韩欧美一区二区三区在线| 男人操女人的视频在线观看欧美| 7777精品伊人久久久大香线蕉超级流畅| 一级日本不卡的影视| 91久久精品一区二区二区| 亚洲男人天堂一区| 日本电影亚洲天堂一区| 亚洲一区日韩精品中文字幕| 欧美三级视频在线| 午夜精品久久久久久不卡8050| 欧美日韩在线精品一区二区三区激情| 一区二区三区精品视频在线| 欧美亚洲高清一区| 天天色综合成人网| 精品久久国产字幕高潮| 国产一区二区影院| 国产精品乱码久久久久久| 99热99精品| 亚洲综合一二三区| 欧美日韩精品一区二区| 久久精品国产77777蜜臀| 欧美成人高清电影在线| 国产精品亚洲成人| 中文字幕在线观看一区二区| 色狠狠桃花综合| 亚洲va中文字幕| 日韩午夜精品电影| 国产成人在线观看免费网站| 国产精品国产三级国产| 欧美日韩你懂的| 久久成人精品无人区| 亚洲国产精品激情在线观看| 色天天综合色天天久久| 午夜电影网一区| 久久久精品国产免大香伊| 99国产欧美久久久精品| 日日夜夜精品免费视频| 久久久亚洲午夜电影| 色综合久久99| 久久国产夜色精品鲁鲁99| 中文字幕不卡在线观看| 欧美日本一区二区三区| 国产成人在线视频免费播放| 一区二区激情视频| 精品久久免费看| 一本色道**综合亚洲精品蜜桃冫| 日韩成人dvd| 中文字幕中文字幕一区二区 | 免费看黄色91| 国产精品成人免费在线| 欧美日韩国产美| 成人自拍视频在线| 午夜亚洲国产au精品一区二区| 久久综合精品国产一区二区三区 | 国产一区二区三区高清播放| 国产精品成人免费精品自在线观看| 欧美日韩国产系列| 成人午夜短视频| 日韩中文字幕区一区有砖一区| 中文字幕第一区| 欧美一区二区免费视频| 成人app网站| 蜜桃av一区二区在线观看| 亚洲免费电影在线| 国产亚洲精品久| 欧美高清视频在线高清观看mv色露露十八 | 在线免费亚洲电影| 国产成a人无v码亚洲福利| 丁香六月久久综合狠狠色| 在线亚洲一区二区| 国产亚洲欧洲一区高清在线观看| 成人美女视频在线看| 日韩av一二三| 亚洲免费在线视频| 欧美高清一级片在线观看| 欧美一区二区视频网站| 在线观看国产日韩| www.激情成人| 国产在线日韩欧美| 日韩 欧美一区二区三区| 最新国产精品久久精品| 久久精品一二三| 精品欧美一区二区在线观看| 欧美亚洲日本一区| 99久久国产综合精品色伊| 国产高清亚洲一区| 激情五月激情综合网| 视频一区视频二区中文| 亚洲无线码一区二区三区| 亚洲欧美日韩在线播放| 中国色在线观看另类| 26uuu亚洲综合色| 欧美大白屁股肥臀xxxxxx| 精品视频123区在线观看| 91亚洲精品乱码久久久久久蜜桃 | 精品久久久久99| 欧美一激情一区二区三区| 精品视频一区二区不卡| 欧美性一二三区| 欧美亚洲丝袜传媒另类| 欧美亚日韩国产aⅴ精品中极品| 91啪亚洲精品| 99re亚洲国产精品| 91丝袜美女网| 色综合久久88色综合天天6| 91免费精品国自产拍在线不卡| 成人av电影免费在线播放| 成人av在线播放网站| av高清久久久| 91在线精品一区二区三区| 99国产精品视频免费观看| av中文一区二区三区| 99re热这里只有精品视频| 国产a级毛片一区| 色丁香久综合在线久综合在线观看| 国产福利一区二区三区视频 | 日韩欧美www| 精品欧美一区二区在线观看| 精品国产制服丝袜高跟| 欧美成人bangbros| 亚洲精品一区二区三区福利| 精品理论电影在线| 一卡二卡三卡日韩欧美| 亚洲一区成人在线| 午夜一区二区三区在线观看| 香蕉成人伊视频在线观看| 日本大胆欧美人术艺术动态| 麻豆精品在线视频| 国产一区二区三区黄视频 | 久久久99精品久久| 国产精品美女一区二区三区 | 欧美日韩一级视频| 91精品麻豆日日躁夜夜躁|