olegk 2003/07/05 15:31:21
Modified: httpclient/src/java/org/apache/commons/httpclient Cookie.java HttpClient.java HttpConnection.java HttpState.java MultiThreadedHttpConnectionManager.java URI.java httpclient/src/java/org/apache/commons/httpclient/util URIUtil.java httpclient/src/test/org/apache/commons/httpclient TestAuthenticator.java TestHttpState.java TestHttps.java TestMethodsExternalHost.java TestWebappBasicAuth.java Removed: httpclient/src/java/org/apache/commons/httpclient Authenticator.java HttpUrlMethod.java RequestOutputStream.java ResponseInputStream.java Log: Deprecated methods in Cookie, HttpClient, HttpConnection, HttpState, URI, URIUtil classes removed. Deprecated classes Authenticator, HttpUrlMethod, RequestOutputStream, ResponseInputStream removed.
[snip]
- /**
- * Parses the Set-Cookie [EMAIL PROTECTED] Header} into an array of
- * <tt>Cookie</tt>s, assuming that the cookies were recieved
- * on an insecure channel.
- *
- * @param domain the domain from which the [EMAIL PROTECTED] Header} was received
- * @param port the port from which the [EMAIL PROTECTED] Header} was received
- * (currently ignored)
- * @param path the path from which the [EMAIL PROTECTED] Header} was received
- * @param setCookie the <tt>Set-Cookie</tt> [EMAIL PROTECTED] Header} received from the
- * server
- * @return an array of <tt>Cookie</tt>s parsed from the Set-Cookie [EMAIL PROTECTED]
- * Header}
- * @throws HttpException if an exception occurs during parsing
- * @throws IllegalArgumentException if domain or path are null
- */
- public static Cookie[] parse(
- String domain, int port, String path, Header setCookie) - throws HttpException, IllegalArgumentException {
- - LOG.trace("enter Cookie.parse(String, int, String, Header)");
- return Cookie.parse(domain, port, path, false, setCookie);
- }
This method was *not* deprecated!
http://cvs.apache.org/builds/gump/2003-07-06/jakarta-cactus-framework-12.html
Of course you can still add the @deprecated tag to the 2.0 branch ...
-- Christopher Lenz /=/ cmlenz at gmx.de
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
