Searched defs:cookie (Results 1 - 25 of 255) sorted by path

1234567891011

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/apache-http/src/org/apache/http/client/
H A DCookieStore.java36 import org.apache.http.cookie.Cookie;
39 * Abstract cookie store.
53 * Adds an {@link Cookie HTTP cookie}, replacing any existing equivalent cookies.
54 * If the given cookie has already expired it will not be added, but existing
57 * @param cookie the {@link Cookie cookie} to be added
59 void addCookie(Cookie cookie); argument
/external/apache-http/src/org/apache/http/client/protocol/
H A DResponseProcessCookies.java45 import org.apache.http.cookie.Cookie;
46 import org.apache.http.cookie.CookieOrigin;
47 import org.apache.http.cookie.CookieSpec;
48 import org.apache.http.cookie.MalformedCookieException;
49 import org.apache.http.cookie.SM;
84 // Obtain cookie store
108 // see if the cookie spec supports cookie versioning.
126 for (Cookie cookie : cookies) {
128 cookieSpec.validate(cookie, cookieOrigi
159 cookieToString(Cookie cookie) argument
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DClientCookie.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/ClientCookie.java $
32 package org.apache.http.cookie;
37 * original cookie attributes exactly as they were specified by the
39 * header because some cookie specifications require that the
H A DCookie.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/Cookie.java $
32 package org.apache.http.cookie;
37 * HTTP "magic-cookie" represents a piece of state information
67 * Returns the comment describing the purpose of this cookie, or
75 * If a user agent (web browser) presents this cookie to a user, the
76 * cookie's purpose will be described by the information at this URL.
81 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
91 * Returns <tt>false</tt> if the cookie should be discarded at the end
94 * @return <tt>false</tt> if the cookie should be discarded at the end
100 * Returns domain attribute of the cookie
[all...]
H A DCookieAttributeHandler.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieAttributeHandler.java $
31 package org.apache.http.cookie;
34 * Ths interface represents a cookie attribute handler responsible
35 * for parsing, validating, and matching a specific cookie attribute,
38 * Different cookie specifications can provide a specific
39 * implementation for this class based on their cookie handling
54 * Parse the given cookie attribute value and update the corresponding
55 * {@link org.apache.http.cookie.Cookie} property.
57 * @param cookie {@link org.apache.http.cookie
60 parse(SetCookie cookie, String value) argument
70 validate(Cookie cookie, CookieOrigin origin) argument
81 match(Cookie cookie, CookieOrigin origin) argument
[all...]
H A DCookieIdentityComparator.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieIdentityComparator.java $
32 package org.apache.http.cookie;
38 * This cookie comparator can be used to compare identity of cookies.
H A DCookieOrigin.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieOrigin.java $
31 package org.apache.http.cookie;
H A DCookiePathComparator.java2 * $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
60 private String normalizePath(final Cookie cookie) { argument
61 String path = cookie.getPath();
H A DCookieSpec.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieSpec.java $
32 package org.apache.http.cookie;
39 * Defines the cookie management specification.
61 * Returns version of the state management this cookie specification
77 * @param origin details of the cookie origin
84 * Validate the cookie according to validation rules defined by the
85 * cookie specification.
87 * @param cookie the Cookie to validate
88 * @param origin details of the cookie origin
89 * @throws MalformedCookieException if the cookie i
91 validate(Cookie cookie, CookieOrigin origin) argument
102 match(Cookie cookie, CookieOrigin origin) argument
[all...]
H A DCookieSpecFactory.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieSpecFactory.java $
32 package org.apache.http.cookie;
H A DCookieSpecRegistry.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieSpecRegistry.java $
32 package org.apache.http.cookie;
44 * cookie specification implementation for a given type of type or version of
45 * cookie.
90 * @param id the identifier of the {@link CookieSpec cookie specification} to unregister
100 * Gets the {@link CookieSpec cookie specification} with the given ID.
102 * @param name the {@link CookieSpec cookie specification} identifier
103 * @param params the {@link HttpParams HTTP parameters} for the cookie
106 * @return {@link CookieSpec cookie specification}
120 throw new IllegalStateException("Unsupported cookie spe
[all...]
H A DMalformedCookieException.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/MalformedCookieException.java $
32 package org.apache.http.cookie;
37 * Signals that a cookie is in some way invalid or illegal in a given
H A DSM.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SM.java $
32 package org.apache.http.cookie;
H A DSetCookie.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie.java $
32 package org.apache.http.cookie;
54 * If a user agent (web browser) presents this cookie to a user, the
55 * cookie's purpose will be described using this comment.
69 * @param expiryDate the {@link Date} after which this cookie is no longer valid.
96 * Sets the secure attribute of the cookie.
98 * When <tt>true</tt> the cookie should only be sent
100 * the cookie's originating server used a secure protocol to set the
101 * cookie's value.
110 * Sets the version of the cookie specificatio
[all...]
H A DSetCookie2.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie2.java $
32 package org.apache.http.cookie;
50 * If a user agent (web browser) presents this cookie to a user, the
51 * cookie's purpose will be described by the information at this URL.
56 * Sets the Port attribute. It restricts the ports to which a cookie
/external/apache-http/src/org/apache/http/cookie/params/
H A DCookieSpecPNames.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/params/CookieSpecPNames.java $
32 package org.apache.http.cookie.params;
35 * Parameter names for cookie specifications in HttpCookie.
59 public static final String DATE_PATTERNS = "http.protocol.cookie-datepatterns";
63 * Defines whether {@link org.apache.http.cookie.Cookie cookies}
66 * If not, each cookie is formatted in a seperate Cookie header.
71 public static final String SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-header";
H A DCookieSpecParamBean.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/params/CookieSpecParamBean.java $
32 package org.apache.http.cookie.params;
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCookieStore.java41 import org.apache.http.cookie.Cookie;
42 import org.apache.http.cookie.CookieIdentityComparator;
81 * Adds an {@link Cookie HTTP cookie}, replacing any existing equivalent cookies.
82 * If the given cookie has already expired it will not be added, but existing
85 * @param cookie the {@link Cookie cookie} to be added
90 public synchronized void addCookie(Cookie cookie) { argument
91 if (cookie != null) {
92 // first remove any old cookie that is equivalent
94 if (cookieComparator.compare(cookie, i
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieAttributeHandler.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/AbstractCookieAttributeHandler.java $
31 package org.apache.http.impl.cookie;
33 import org.apache.http.cookie.Cookie;
34 import org.apache.http.cookie.CookieAttributeHandler;
35 import org.apache.http.cookie.CookieOrigin;
36 import org.apache.http.cookie.MalformedCookieException;
46 public void validate(final Cookie cookie, final CookieOrigin origin) argument
51 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
H A DAbstractCookieSpec.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/AbstractCookieSpec.java $
32 package org.apache.http.impl.cookie;
38 import org.apache.http.cookie.CookieAttributeHandler;
39 import org.apache.http.cookie.CookieSpec;
42 * Abstract cookie specification which can delegate the job of parsing,
43 * validation or matching cookie attributes to a number of arbitrary
H A DBasicClientCookie.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicClientCookie.java $
32 package org.apache.http.impl.cookie;
39 import org.apache.http.cookie.ClientCookie;
40 import org.apache.http.cookie.SetCookie;
43 * HTTP "magic-cookie" represents a piece of state information
111 * Returns the comment describing the purpose of this cookie, or
123 * If a user agent (web browser) presents this cookie to a user, the
124 * cookie's purpose will be described using this comment.
144 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
164 * @param expiryDate the {@link Date} after which this cookie i
[all...]
H A DBasicClientCookie2.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicClientCookie2.java $
32 package org.apache.http.impl.cookie;
36 import org.apache.http.cookie.SetCookie2;
39 * HTTP "magic-cookie" represents a piece of state information
H A DBasicCommentHandler.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicCommentHandler.java $
31 package org.apache.http.impl.cookie;
33 import org.apache.http.cookie.MalformedCookieException;
34 import org.apache.http.cookie.SetCookie;
48 public void parse(final SetCookie cookie, final String value) argument
50 if (cookie == null) {
53 cookie.setComment(value);
H A DBasicDomainHandler.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicDomainHandler.java $
31 package org.apache.http.impl.cookie;
33 import org.apache.http.cookie.Cookie;
34 import org.apache.http.cookie.CookieAttributeHandler;
35 import org.apache.http.cookie.CookieOrigin;
36 import org.apache.http.cookie.MalformedCookieException;
37 import org.apache.http.cookie.SetCookie;
51 public void parse(final SetCookie cookie, final String value) argument
53 if (cookie == null) {
62 cookie
65 validate(final Cookie cookie, final CookieOrigin origin) argument
107 match(final Cookie cookie, final CookieOrigin origin) argument
[all...]

Completed in 2426 milliseconds

1234567891011