You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by su...@apache.org on 2007/12/15 07:00:48 UTC

svn commit: r604394 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java

Author: sumedha
Date: Fri Dec 14 22:00:45 2007
New Revision: 604394

URL: http://svn.apache.org/viewvc?rev=604394&view=rev
Log:
Changed parameter name.We are excluding specific properties of given bean, not excluding the bean itself.

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java?rev=604394&r1=604393&r2=604394&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java Fri Dec 14 22:00:45 2007
@@ -669,13 +669,13 @@
 
     /**
      * This method is to process bean exclude parameter and the XML format of that would be
-     * <parameter name="excludeBeans">
+     * <parameter name="excludeBeanProperties">
      *     <bean class="full qualified class name" excludeProperties="name,age"/>+
      * </parameter>
      * @param service , AxisService object
      */
     public static void processBeanPropertyExclude(AxisService  service){
-        Parameter excludeBeanProperty = service.getParameter("excludeBeans");
+        Parameter excludeBeanProperty = service.getParameter("excludeBeanProperties");
         if (excludeBeanProperty != null) {
             OMElement parameterElement = excludeBeanProperty.getParameterElement();
             Iterator bneasItr =parameterElement.getChildrenWithName(new QName("bean"));



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org