Index: HttpMethodBase.java =================================================================== RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v retrieving revision 1.156 diff -u -r1.156 HttpMethodBase.java --- HttpMethodBase.java 23 Jun 2003 23:41:39 -0000 1.156 +++ HttpMethodBase.java 27 Jun 2003 15:49:31 -0000 @@ -135,6 +135,7 @@ * @author Michael Becke * @author Oleg Kalnichevski * @author Mike Bowler + * @author Gary Gregory * * @version $Revision: 1.156 $ $Date: 2003/06/23 23:41:39 $ */ @@ -231,10 +232,10 @@ /** Whether or not I should automatically process authentication. */ private boolean doAuthentication = true; - /** Whether or not I should use the HTTP/1.1 protocol. */ + /** Whether or not I should use the HTTP/1.1 protocol. The default is true. */ private boolean http11 = true; - /** True if we're in strict mode. */ + /** True if we're in strict mode. The default is false. */ private boolean strictMode = false; /** Whether or not I have been executed. */ @@ -257,7 +258,7 @@ /** true if we are finished with the connection */ private boolean doneWithConnection = false; - /** Number of milliseconds to wait for 100-contunue response */ + /** Number of milliseconds to wait for 100-contunue response. */ private static final int RESPONSE_WAIT_TIME_MS = 3000; // ----------------------------------------------------------- Constructors @@ -416,7 +417,7 @@ /** * Access to flag to determine if client should use - * HTTP/1.1 protocol. + * HTTP/1.1 protocol. The default is true. * * @return true if I should use the HTTP/1.1 protocol */