You are viewing a plain text version of this content. The canonical link for it is here.
Posted to servletapi-dev@jakarta.apache.org by da...@locus.apache.org on 2000/10/17 00:05:30 UTC

cvs commit: jakarta-servletapi/src/share/javax/servlet/http HttpServletRequest.java

dannyc      00/10/16 15:05:30

  Modified:    src/share/javax/servlet/http Tag: SERVLET_23_JSP_12
                        HttpServletRequest.java
  Log:
  fix javadoc for getHeaderNames() as per expert group
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.1.1.4.2 +8 -5      jakarta-servletapi/src/share/javax/servlet/http/HttpServletRequest.java
  
  Index: HttpServletRequest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/src/share/javax/servlet/http/HttpServletRequest.java,v
  retrieving revision 1.1.1.1.4.1
  retrieving revision 1.1.1.1.4.2
  diff -u -r1.1.1.1.4.1 -r1.1.1.1.4.2
  --- HttpServletRequest.java	2000/08/17 01:33:12	1.1.1.1.4.1
  +++ HttpServletRequest.java	2000/10/16 22:05:26	1.1.1.1.4.2
  @@ -204,11 +204,13 @@
        * @param name		a <code>String</code> specifying the
        *				header name
        *
  -     * @return			a <code>Enumeration</code> containing the
  -     *				values of the requested
  -     *				header, or <code>null</code>
  -     *				if the request does not
  -     *				have any headers of that name
  +     * @return			an <code>Enumeration</code> containing
  +     *                  	the values of the requested header. If
  +     *                  	the request does not have any headers of
  +     *                  	that name return an empty
  +     *                  	enumeration. If 
  +     *                  	the container does not allow access to
  +     *                  	header information, return null
        *
        */			
   
  @@ -235,6 +237,7 @@
        *				if the servlet container does not
        *				allow servlets to use this method,
        *				<code>null</code>
  +     *				
        *
        */