Return-Path: Delivered-To: apmail-struts-commits-archive@locus.apache.org Received: (qmail 54395 invoked from network); 20 Sep 2007 13:10:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Sep 2007 13:10:25 -0000 Received: (qmail 28872 invoked by uid 500); 20 Sep 2007 13:10:16 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 28830 invoked by uid 500); 20 Sep 2007 13:10:16 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 28821 invoked by uid 99); 20 Sep 2007 13:10:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Sep 2007 06:10:16 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Sep 2007 13:12:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C74F01A9838; Thu, 20 Sep 2007 06:10:01 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r577733 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java Date: Thu, 20 Sep 2007 13:10:01 -0000 To: commits@struts.apache.org From: mrdon@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070920131001.C74F01A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mrdon Date: Thu Sep 20 06:10:00 2007 New Revision: 577733 URL: http://svn.apache.org/viewvc?rev=577733&view=rev Log: Updating docs on plugin api points WW-1715 Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java?rev=577733&r1=577732&r2=577733&view=diff ============================================================================== --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/config/BeanSelectionProvider.java Thu Sep 20 06:10:00 2007 @@ -112,8 +112,33 @@ * singleton * Loads and processes Velocity templates * + * + * com.opensymphony.xwork2.validator.ActionValidatorManager + * struts.actionValidatorManager + * singleton + * Main interface for validation managers (regular and annotation based). Handles both the loading of + * configuration and the actual validation (since 2.1) + * + * + * com.opensymphony.xwork2.util.ValueStackFactory + * struts.valueStackFactory + * singleton + * Creates value stacks (since 2.1) + * + * + * com.opensymphony.xwork2.reflection.ReflectionProvider + * struts.reflectionProvider + * singleton + * Provides reflection services, key place to plug in a custom expression language (since 2.1) + * + * + * com.opensymphony.xwork2.reflection.ReflectionContextFactory + * struts.reflectionContextFactory + * singleton + * Creates reflection context maps used for reflection and expression language operations (since 2.1) + * * - * + * * *

*