rleland 2003/07/26 22:38:38 Modified: src/share/org/apache/struts/config ConfigHelper.java Log: Deprecate these methods() since they return objects that have been deprecated. The ModuleConfig object should be used to lookup these items. Revision Changes Path 1.7 +8 -4 jakarta-struts/src/share/org/apache/struts/config/ConfigHelper.java Index: ConfigHelper.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/config/ConfigHelper.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ConfigHelper.java 4 Jul 2003 20:53:42 -0000 1.6 +++ ConfigHelper.java 27 Jul 2003 05:38:38 -0000 1.7 @@ -234,6 +234,7 @@ /** * The <code>org.apache.struts.action.ActionFormBeans</code> collection * for this application. + * @deprecated deprecated in struts 1.2 ActionFormBeans is replaced by a collection in ModuleConfig. */ public ActionFormBeans getActionFormBeans() { @@ -247,6 +248,8 @@ /** * The <code>org.apache.struts.action.ActionForwards</code> collection * for this application. + * @deprecated deprecated in struts 1.2 ActionForwards is replaced by a collection in ModuleConfig. + */ public ActionForwards getActionForwards() { @@ -262,6 +265,7 @@ * <code>org.apache.struts.action.ActionMappings</code> collection * is normally stored, unless overridden when initializing our * ActionServlet. + * @deprecated deprecated in struts 1.2 ActionMappings is replaced by a collection in ModuleConfig. */ public ActionMappings getActionMappings() { if (this.application == null) {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]