remm 01/10/21 21:48:56
Modified: catalina/src/share/org/apache/catalina Host.java
Log:
- Add new auto deploy flag. If true, the web applcations will be automatically
deployed by the host configurator.
Revision Changes Path
1.7 +20 -4 jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Host.java
Index: Host.java
===================================================================
RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Host.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Host.java 2001/10/16 23:14:13 1.6
+++ Host.java 2001/10/22 04:48:56 1.7
@@ -1,7 +1,7 @@
/*
- * $Header: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Host.java,v
1.6 2001/10/16 23:14:13 remm Exp $
- * $Revision: 1.6 $
- * $Date: 2001/10/16 23:14:13 $
+ * $Header: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/Host.java,v
1.7 2001/10/22 04:48:56 remm Exp $
+ * $Revision: 1.7 $
+ * $Date: 2001/10/22 04:48:56 $
*
* ====================================================================
*
@@ -89,7 +89,7 @@
* an individual servlet context), depending upon the Engine implementation.
*
* @author Craig R. McClanahan
- * @version $Revision: 1.6 $ $Date: 2001/10/16 23:14:13 $
+ * @version $Revision: 1.7 $ $Date: 2001/10/22 04:48:56 $
*/
public interface Host extends Container {
@@ -129,6 +129,22 @@
* @param appBase The new application root
*/
public void setAppBase(String appBase);
+
+
+ /**
+ * Return the value of the auto deploy flag. If true, it indicates that
+ * this host's child webapps should be discovred and automatically
+ * deployed.
+ */
+ public boolean getAutoDeploy();
+
+
+ /**
+ * Set the auto deploy flag value for this host.
+ *
+ * @param autoDeploy The new auto deploy flag
+ */
+ public void setAutoDeploy(boolean autoDeploy);
/**
|