Home | History | Annotate | Download | only in cookie

Lines Matching refs:path

40  * that those with more specific Path attributes precede those with
44 * This comparator assumes that Path attributes of two cookies
45 * path-match a commmon request-URI. Otherwise, the result of the
61 String path = cookie.getPath();
62 if (path == null) {
63 path = "/";
65 if (!path.endsWith("/")) {
66 path = path + '/';
68 return path;