Home | History | Annotate | Download | only in cookie

Lines Matching defs:cookie

2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BrowserCompatSpec.java $
32 package org.apache.http.impl.cookie;
41 import org.apache.http.cookie.ClientCookie;
42 import org.apache.http.cookie.Cookie;
43 import org.apache.http.cookie.CookieOrigin;
44 import org.apache.http.cookie.MalformedCookieException;
45 import org.apache.http.cookie.SM;
51 * Cookie specification that strives to closely mimic (mis)behavior of
108 public List<Cookie> parse(final Header header, final CookieOrigin origin)
114 throw new IllegalArgumentException("Cookie origin may not be null");
158 public List<Header> formatCookies(final List<Cookie> cookies) {
166 buffer.append(SM.COOKIE);
169 Cookie cookie = cookies.get(i);
173 buffer.append(cookie.getName());
175 String s = cookie.getValue();