Author: markt
Date: Sat Sep 8 19:48:23 2012
New Revision: 1382348
URL: http://svn.apache.org/viewvc?rev=1382348&view=rev
Log:
Re-order to match comments
Modified:
tomcat/trunk/java/org/apache/catalina/Host.java
Modified: tomcat/trunk/java/org/apache/catalina/Host.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/Host.java?rev=1382348&r1=1382347&r2=1382348&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/Host.java (original)
+++ tomcat/trunk/java/org/apache/catalina/Host.java Sat Sep 8 19:48:23 2012
@@ -195,6 +195,21 @@ public interface Host extends Container
public ExecutorService getStartStopExecutor();
+ /**
+ * Returns true if the Host will attempt to create directories for appBase
and xmlBase
+ * unless they already exist.
+ * @return true if the Host will attempt to create directories
+ */
+ public boolean getCreateDirs();
+
+
+ /**
+ * Set to true if the Host should attempt to create directories for
xmlBase and appBase upon startup
+ * @param createDirs
+ */
+ public void setCreateDirs(boolean createDirs);
+
+
// --------------------------------------------------------- Public Methods
/**
@@ -218,17 +233,4 @@ public interface Host extends Container
* @param alias Alias name to be removed
*/
public void removeAlias(String alias);
-
- /**
- * Returns true if the Host will attempt to create directories for appBase
and xmlBase
- * unless they already exist.
- * @return true if the Host will attempt to create directories
- */
- public boolean getCreateDirs();
- /**
- * Set to true if the Host should attempt to create directories for
xmlBase and appBase upon startup
- * @param createDirs
- */
- public void setCreateDirs(boolean createDirs);
-
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]