While clients should not be using this class directly, we are at a point now that we can't just rip stuff out of the public interface. How about we deprecate this class for a few intermediate builds and then make it package access before we do a release candidate?

Note to self: I feel like I'm turning into a deprecation nazi.

Jitler.


Adrian Sutton wrote:

Sigh, that sounds like our exchange server is doing something strange again.
I'll post it inline below since it's basically just a search and remove on
the word "public".

Adrian Sutton, Software Engineer
Ephox Corporation
www.ephox.com


-----Original Message-----
From: Oleg Kalnichevski [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 11 February 2003 8:41 AM
To: Commons HttpClient Project
Subject: Re: [PATCH] Make NTLM package private


Adrian
There's no patch attached to your message as it seems.

Oleg

----------------------------Patch-----------------------------
Index: NTLM.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/httpclient/src/java/org/apache/commons/httpc
lient/NTLM.java,v
retrieving revision 1.11
diff -u -u -r1.11 NTLM.java
--- NTLM.java 30 Jan 2003 05:01:54 -0000 1.11
+++ NTLM.java 10 Feb 2003 22:26:28 -0000
@@ -94,7 +94,7 @@
* @version $Revision: 1.11 $ $Date: 2003/01/30 05:01:54 $
* @since 2.0
*/
-public final class NTLM {
+final class NTLM {

/** The current response */
private byte[] currentResponse;
@@ -106,7 +106,7 @@
private static final Log LOG = LogFactory.getLog(NTLM.class);

/** Character encoding */
- public static final String DEFAULT_CHARSET = "ASCII";
+ static final String DEFAULT_CHARSET = "ASCII";

//Initialize the security provider
static {
@@ -144,7 +144,7 @@
* @return The response.
* @throws HttpException If the messages cannot be retrieved.
*/
- public final String getResponseFor(String message,
+ final String getResponseFor(String message,
String username, String password, String host, String domain)
throws HttpException {

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to