Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 24123 invoked from network); 7 Dec 2007 09:52:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Dec 2007 09:52:03 -0000 Received: (qmail 20816 invoked by uid 500); 7 Dec 2007 09:51:51 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 20710 invoked by uid 500); 7 Dec 2007 09:51:51 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 20699 invoked by uid 500); 7 Dec 2007 09:51:51 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 20694 invoked by uid 99); 7 Dec 2007 09:51:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Dec 2007 01:51:51 -0800 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; Fri, 07 Dec 2007 09:51:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8D35B1A9832; Fri, 7 Dec 2007 01:51:40 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r602051 - /webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/BeanUtil.java Date: Fri, 07 Dec 2007 09:51:39 -0000 To: axis2-cvs@ws.apache.org From: deepal@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071207095140.8D35B1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: deepal Date: Fri Dec 7 01:51:39 2007 New Revision: 602051 URL: http://svn.apache.org/viewvc?rev=602051&view=rev Log: do not need to get the property if the class is extend form java.* Modified: webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/BeanUtil.java Modified: webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/BeanUtil.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/BeanUtil.java?rev=602051&r1=602050&r2=602051&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/BeanUtil.java (original) +++ webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/BeanUtil.java Fri Dec 7 01:51:39 2007 @@ -131,7 +131,7 @@ propertyList.add(property); } JClass supClass = jClass.getSuperclass(); - while (!"java.lang.Object".equals(supClass.getQualifiedName())) { + while (!supClass.getQualifiedName().startsWith("java.")) { properties = supClass.getDeclaredProperties(); Map map = axisService.getBeanExludeMap(); if (map != null) { --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org