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

Quick Search    Search Deep

com.lutris.http.debug.* (3)com.lutris.http.tests.* (3)

com.lutris.http: Javadoc index of package com.lutris.http.


Package Samples:

com.lutris.http.tests
com.lutris.http.debug

Classes:

BasicAuth: Methods to be used to implement the HTTP Basic Auth authorization method. This is the standard username/password mechanism in use all over the web. Note: the username and password are sent over the net base64 encoded, which is practically clear text. So this method is no more secure than the communication channel being used. Usage: When a request comes in, before responding to it, call getAuthentication() . It will return the username and password that was sent along with the request. If no authorization was sent, null is returned. The caller is then responsible for deciding if the username and ...
SerializableCookie: This class is a substitute for Cookies, but it is serializable. It is used to pass cookies back and forth when using RMI. Rather than pasing or returning a Cookie, which would cause a marshalling error, the Cookies are turned into SerializabeCookies, passed through RMI, then turned back into Cookies at the other end. There is no reason why Cookies could not be serializable. Sun may well fix this oversight in version 2 of Java, in which case this class will no longer be necissary to use RMI with the MultiServer.
HttpDebug: This class is used for debugging. It generates html formatted output. It can be used to display http request, http response information. The interfaces DebugRequest and DebugResponse are used to define how this debugging class interacts with the various type of request and response classes including: HttpServletRequest, HttpServletResponse, HttpPresentationRequest, HttpPresentationResponse, HttpRequest, HttpResponse, etc.
URLDecoder: This class contains a utility method for converting a String from the MIME "x-www-form-urlencoded" into its original format. This class implements the inverse functionality of java.net.URLEncoder .
HttpCookieParser: This class takes a cookie header and converts it into a set of http cookies. It can be used to parse request and response cookie headers as well as format response cookies.
MimeType: Class for querying and setting mime types. Provides a default set of well known mime types.
BasicAuthResult: This class is used by BasicAuth to return both the username and the password at once.
HttpUtilsTests: Class that tests the HttpUtilsTests object. TODO: more robust tests are needed.
HttpCookieManager: This object manages cookies defined in http request and response headers.
DebugResponse: Object used to access HTTP response data for debugging purposes.
DebugRequest: Object used to access HTTP request data for debugging purposes.
HttpUtils: Utility methods useful to for HTTP.
CookieParserTests: Simple tests for cookie parser.
HttpStatus
CookieManagerTests

Home | Contact Us | Privacy Policy | Terms of Service