Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 94436 invoked from network); 6 Nov 2008 19:35:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Nov 2008 19:35:18 -0000 Received: (qmail 27037 invoked by uid 500); 6 Nov 2008 19:35:24 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 27015 invoked by uid 500); 6 Nov 2008 19:35:24 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 27006 invoked by uid 99); 6 Nov 2008 19:35:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Nov 2008 11:35:24 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Nov 2008 19:34:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4E42C2388920; Thu, 6 Nov 2008 11:34:27 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r711949 - in /cxf/trunk: parent/pom.xml rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/WrapperClassGenerator.java Date: Thu, 06 Nov 2008 19:34:12 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081106193427.4E42C2388920@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Thu Nov 6 11:33:52 2008 New Revision: 711949 URL: http://svn.apache.org/viewvc?rev=711949&view=rev Log: Update spring version Modified: cxf/trunk/parent/pom.xml cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/WrapperClassGenerator.java Modified: cxf/trunk/parent/pom.xml URL: http://svn.apache.org/viewvc/cxf/trunk/parent/pom.xml?rev=711949&r1=711948&r2=711949&view=diff ============================================================================== --- cxf/trunk/parent/pom.xml (original) +++ cxf/trunk/parent/pom.xml Thu Nov 6 11:33:52 2008 @@ -48,7 +48,7 @@ 6.1.11 1.3 1.3.2 - 2.5.5 + 2.5.6 spring-test 1.6.2 10.2.2.0 Modified: cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/WrapperClassGenerator.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/WrapperClassGenerator.java?rev=711949&r1=711948&r2=711949&view=diff ============================================================================== --- cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/WrapperClassGenerator.java (original) +++ cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/WrapperClassGenerator.java Thu Nov 6 11:33:52 2008 @@ -300,10 +300,10 @@ av0.visit("namespace", mpi.getConcreteName().getNamespaceURI()); } if (factory.isWrapperPartNillable(mpi)) { - av0.visit("nillable", "true"); + av0.visit("nillable", Boolean.TRUE); } if (factory.getWrapperPartMinOccurs(mpi) == 1) { - av0.visit("required", "true"); + av0.visit("required", Boolean.TRUE); } av0.visitEnd();