remm        2003/06/15 06:03:11

  Modified:    catalina/src/share/org/apache/catalina Host.java
  Log:
  - Update the host properties, as discussed earlier:
    - liveDeploy -> autoDeploy: dynamic deployement of webapps put in the host
      appBase
    - autoDeploy -> deployOnStartup: Deploy webapps from appBase on startup
  - Neither of these have a good reason to be false by default (IMO).
  
  Revision  Changes    Path
  1.4       +21 -5     
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/Host.java
  
  Index: Host.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/Host.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Host.java 16 Sep 2002 04:45:38 -0000      1.3
  +++ Host.java 15 Jun 2003 13:03:11 -0000      1.4
  @@ -133,7 +133,7 @@
       /**
        * Return the value of the auto deploy flag.  If true, it indicates that 
        * this host's child webapps should be discovred and automatically 
  -     * deployed.
  +     * deployed dynamically.
        */
       public boolean getAutoDeploy();
   
  @@ -161,6 +161,22 @@
       public DefaultContext getDefaultContext();
       
       
  +    /**
  +     * Return the value of the deploy on startup flag.  If true, it indicates 
  +     * that this host's child webapps should be discovred and automatically 
  +     * deployed.
  +     */
  +    public boolean getDeployOnStartup();
  +
  +
  +    /**
  +     * Set the deploy on startup flag value for this host.
  +     * 
  +     * @param deployOnStartup The new deploy on startup flag
  +     */
  +    public void setDeployOnStartup(boolean deployOnStartup);
  +
  +
       /**
        * Return the canonical, fully qualified, name of the virtual host
        * this Container represents.
  
  
  

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

Reply via email to