Add one cookie into cookie store.
Removes all of {@link Cookie cookies} in this HTTP state that have expired by the specified {@link java.util.Date date}.
Get all cookies, which: 1) given uri domain-matches with, or, associated with given uri when added to the cookie store. 3) not expired. See RFC 2965 sec. 3.3.4 for more detail.
Get all cookies in cookie store, except those have expired
Get all URIs, which are associated with at least one cookie of this cookie store.
Remove a cookie from store
Remove all cookies in this cookie store.
Adds one HTTP cookie to the store. This is called for every incoming HTTP response.
Retrieve cookies associated with given URI, or whose domain matches the given URI. Only cookies that have not expired are returned. This is called for every outgoing HTTP request.
Get all not-expired cookies in cookie store.
Get all URIs which identify the cookies in this cookie store.
Remove a cookie from store.
Remove all cookies in this cookie store.
Removes all of {@link Cookie}s in this store that have expired by the specified SysTime.
A simple in-memory CookieStore implementation
@author Edward Wang