You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by mr...@apache.org on 2006/11/18 09:15:50 UTC

svn commit: r476465 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java

Author: mrdon
Date: Sat Nov 18 00:15:49 2006
New Revision: 476465

URL: http://svn.apache.org/viewvc?view=rev&rev=476465
Log:
Additional Javadocs for filter 
WW-1498

Modified:
    struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java

Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java?view=diff&rev=476465&r1=476464&r2=476465
==============================================================================
--- struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java (original)
+++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/FilterDispatcher.java Sat Nov 18 00:15:49 2006
@@ -112,6 +112,26 @@
  * database access credentials.
  *
  * <p/>
+ * 
+ * <p>
+ * 
+ * This filter supports the following init-params:
+ * <!-- START SNIPPET: params -->
+ *
+ * <ul>
+ *
+ * <li><b>config</b> - a comma-delimited list of XML configuration files to load.</li>
+ *
+ * <li><b>actionPackages</b> - a comma-delimited list of Java packages to scan for Actions.</li>
+ *
+ * <li><b>configProviders</b> - a comma-delimited list of Java classes that implement the 
+ * {@link ConfigurationProvider} interface that should be used for building the {@link Configuration}.</li>
+ * 
+ * </ul>
+ *
+ * <!-- END SNIPPET: params -->
+ * 
+ * </p>
  *
  * To use a custom {@link Dispatcher}, the <code>createDispatcher()</code> method could be overriden by
  * the subclass.