当前位置: 首页>>代码示例>>Java>>正文


Java SetCookie.setDomain方法代码示例

本文整理汇总了Java中org.apache.http.cookie.SetCookie.setDomain方法的典型用法代码示例。如果您正苦于以下问题:Java SetCookie.setDomain方法的具体用法?Java SetCookie.setDomain怎么用?Java SetCookie.setDomain使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.http.cookie.SetCookie的用法示例。


在下文中一共展示了SetCookie.setDomain方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
/**
 * Parse cookie domain attribute.
 */
public void parse(final SetCookie cookie, String domain)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (domain == null) {
        throw new MalformedCookieException(
                "Missing value for domain attribute");
    }
    if (domain.trim().length() == 0) {
        throw new MalformedCookieException(
                "Blank value for domain attribute");
    }
    domain = domain.toLowerCase(Locale.ENGLISH);
    if (!domain.startsWith(".")) {
        // Per RFC 2965 section 3.2.2
        // "... If an explicitly specified value does not start with
        // a dot, the user agent supplies a leading dot ..."
        // That effectively implies that the domain attribute
        // MAY NOT be an IP address of a host name
        domain = '.' + domain;
    }
    cookie.setDomain(domain);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:28,代码来源:RFC2965DomainAttributeHandler.java

示例2: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
/**
 * Parse cookie domain attribute.
 */
public void parse(
        final SetCookie cookie, final String domain) throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (domain == null) {
        throw new MalformedCookieException(
                "Missing value for domain attribute");
    }
    if (domain.trim().length() == 0) {
        throw new MalformedCookieException(
                "Blank value for domain attribute");
    }
    String s = domain;
    s = s.toLowerCase(Locale.ENGLISH);
    if (!domain.startsWith(".")) {
        // Per RFC 2965 section 3.2.2
        // "... If an explicitly specified value does not start with
        // a dot, the user agent supplies a leading dot ..."
        // That effectively implies that the domain attribute
        // MAY NOT be an IP address of a host name
        s = '.' + s;
    }
    cookie.setDomain(s);
}
 
开发者ID:xxonehjh,项目名称:remote-files-sync,代码行数:27,代码来源:RFC2965DomainAttributeHandlerHC4.java

示例3: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
/**
 * Parse cookie domain attribute.
 */
@Override
public void parse(
        final SetCookie cookie, final String domain) throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (domain == null) {
        throw new MalformedCookieException(
                "Missing value for domain attribute");
    }
    if (domain.trim().isEmpty()) {
        throw new MalformedCookieException(
                "Blank value for domain attribute");
    }
    String s = domain;
    s = s.toLowerCase(Locale.ROOT);
    if (!domain.startsWith(".")) {
        // Per RFC 2965 section 3.2.2
        // "... If an explicitly specified value does not start with
        // a dot, the user agent supplies a leading dot ..."
        // That effectively implies that the domain attribute
        // MAY NOT be an IP address of a host name
        s = '.' + s;
    }
    cookie.setDomain(s);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:28,代码来源:RFC2965DomainAttributeHandler.java

示例4: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
@Override
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (TextUtils.isBlank(value)) {
        throw new MalformedCookieException("Blank or null value for domain attribute");
    }
    // Ignore domain attributes ending with '.' per RFC 6265, 4.1.2.3
    if (value.endsWith(".")) {
        return;
    }
    String domain = value;
    if (domain.startsWith(".")) {
        domain = domain.substring(1);
    }
    domain = domain.toLowerCase(Locale.ROOT);
    cookie.setDomain(domain);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:19,代码来源:BasicDomainHandler.java

示例5: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
/**
 * Parse cookie domain attribute.
 */
public void parse(final SetCookie cookie, String domain)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (domain == null) {
        throw new MalformedCookieException(
                "Missing value for domain attribute");
    }
    if (domain.trim().length() == 0) {
        throw new MalformedCookieException(
                "Blank value for domain attribute");
    }
    domain = domain.toLowerCase(Locale.ENGLISH);
    if (!domain.startsWith(".")) {
        // Per RFC 2965 section 3.2.2
        // "... If an explicitly specified value does not start with
        // a dot, the user agent supplies a leading dot ..."
        // That effectively implies that the domain attribute 
        // MAY NOT be an IP address of a host name
        domain = '.' + domain;
    }
    cookie.setDomain(domain);
}
 
开发者ID:tdopires,项目名称:cJUnit-mc626,代码行数:28,代码来源:RFC2965DomainAttributeHandler.java

示例6: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (value == null) {
        throw new MalformedCookieException("Missing value for domain attribute");
    }
    if (value.trim().length() == 0) {
        throw new MalformedCookieException("Blank value for domain attribute");
    }
    cookie.setDomain(value);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:14,代码来源:RFC2109DomainHandler.java

示例7: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException("Missing value for domain attribute");
    }
    if (value.trim().length() == 0) {
        throw new MalformedCookieException("Blank value for domain attribute");
    }
    cookie.setDomain(value);
}
 
开发者ID:xxonehjh,项目名称:remote-files-sync,代码行数:12,代码来源:BasicDomainHandlerHC4.java

示例8: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
@Override
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException("Missing value for domain attribute");
    }
    if (value.trim().isEmpty()) {
        throw new MalformedCookieException("Blank value for domain attribute");
    }
    cookie.setDomain(value);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:13,代码来源:RFC2109DomainHandler.java

示例9: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
@Override
public void parse(final SetCookie cookie, final String value) throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (TextUtils.isBlank(value)) {
        throw new MalformedCookieException("Blank or null value for domain attribute");
    }
    cookie.setDomain(value);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:9,代码来源:NetscapeDomainHandler.java

示例10: parse

import org.apache.http.cookie.SetCookie; //导入方法依赖的package包/类
public void parse(final SetCookie cookie, final String value) 
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (value == null) {
        throw new MalformedCookieException("Missing value for domain attribute");
    }
    if (value.trim().length() == 0) {
        throw new MalformedCookieException("Blank value for domain attribute");
    }
    cookie.setDomain(value);
}
 
开发者ID:tdopires,项目名称:cJUnit-mc626,代码行数:14,代码来源:RFC2109DomainHandler.java


注:本文中的org.apache.http.cookie.SetCookie.setDomain方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。