Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.sonalb.net.http.cookie: Javadoc index of package com.sonalb.net.http.cookie.


Package Samples:

com.sonalb.net.http.cookie: Contains classes related to the Hyper Text Transport Protocol (HTTP)  

Classes:

Client: This class is used to invoke the cookie-handling logic of the jCookie Library. It is the developer's view of the library. All cookie-handling methods are invoked on this object. The following snippet shows common-case usage. The highlighted portion is the only cookie-handling code, as far as the developer is concerned. import com.sonalb.net.http.cookie.*; import java.net.*; import java.io.*; ... public class Example { ... public void someMethod() { ... URL url = new URL("http://www.site.com/"); HttpURLConnection huc = (HttpURLConnection) url.openConnection(); // Setup the HttpURLConnection here ...
Cookie: The data structure representing a cookie. Supports both Netscape (Version 0) and RFC2965 (Version 1) cookies. The fields common to both these versions are listed below: NAME - Must be set, no default value VALUE - Default value: Empty Domain - Must be set, default: Local Path - Must be set, default: / (root) Secure - Optional, default: false
CookieJar: Container for Cookie objects. Each CookieJar is independent of any request. This means that a single CookieJar can hold all the cookies for a number of requests and servers.
MalformedCookieException: Indicates some problem caused by a bad or malformed cookie. For constructor descriptions, see the documentation for superclass.
CookieMatcher: Allows custom matching of Cookies. Applications can use their matching logic to pick out Cookies.
RFC2965CookieParser: Implementation for CookieParser that conforms to cookie specification RFC-2965.
CookieParser: Interface definition for cookie-parsing and specification implementations.
CookieUtils: Provides utility functions for internal consumption.

Home | Contact Us | Privacy Policy | Terms of Service