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/cookie/CookiePathComparator.java $
32 package org.apache.http.cookie;
38 * This cookie comparator ensures that multiple cookies satisfying
39 * a common criteria are ordered in the <tt>Cookie</tt> header such
56 public class CookiePathComparator implements Serializable, Comparator<Cookie> {
60 private String normalizePath(final Cookie cookie) {
61 String path = cookie.getPath();
71 public int compare(final Cookie c1, final Cookie c2) {