You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2003/01/28 19:20:05 UTC

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina Request.java

remm        2003/01/28 10:20:05

  Modified:    catalina/src/share/org/apache/catalina Request.java
  Log:
  - "Use" the new mapper.
  - Since the mapper is not populated, it doesn't do anything.
  
  Revision  Changes    Path
  1.3       +20 -4     jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/Request.java
  
  Index: Request.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/Request.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Request.java	25 Nov 2002 21:02:21 -0000	1.2
  +++ Request.java	28 Jan 2003 18:20:05 -0000	1.3
  @@ -150,6 +150,22 @@
   
   
       /**
  +     * Return the Host within which this Request is being processed.
  +     */
  +    public Host getHost();
  +
  +
  +    /**
  +     * Set the Host within which this Request is being processed.  This
  +     * must be called as soon as the appropriate Host is identified, and
  +     * before the Request is passed to a context.
  +     *
  +     * @param host The newly associated Host
  +     */
  +    public void setHost(Host host);
  +
  +
  +    /**
        * Return descriptive information about this Request implementation and
        * the corresponding version number, in the format
        * <code>&lt;description&gt;/&lt;version&gt;</code>.
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>