| HTTPClient.CookiePolicyHandler
Method Summary | |
boolean | acceptCookie(Cookie cookie, RoRequest req, RoResponse resp) This method is called for each cookie that a server tries to set via
the Set-Cookie header. | boolean | sendCookie(Cookie cookie, RoRequest req) This method is called for each cookie that is eligible for sending
with a request (according to the matching rules for the path, domain,
protocol, etc). |
acceptCookie | boolean acceptCookie(Cookie cookie, RoRequest req, RoResponse resp)(Code) | | This method is called for each cookie that a server tries to set via
the Set-Cookie header. This enables you to implement your own
cookie acceptance policy.
Parameters: cookie - the cookie in question Parameters: req - the request sent which prompted the response Parameters: resp - the response which is trying to set the cookie true if this cookie should be accepted, false if it is tobe rejected. |
sendCookie | boolean sendCookie(Cookie cookie, RoRequest req)(Code) | | This method is called for each cookie that is eligible for sending
with a request (according to the matching rules for the path, domain,
protocol, etc). This enables you to control the sending of cookies.
Parameters: cookie - the cookie in question Parameters: req - the request this cookie is to be sent with true if this cookie should be sent, false if it is to beignored. |
|
|