Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 82294 invoked from network); 10 Oct 2009 15:27:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Oct 2009 15:27:23 -0000 Received: (qmail 1963 invoked by uid 500); 10 Oct 2009 15:27:22 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 1876 invoked by uid 500); 10 Oct 2009 15:27:22 -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 1852 invoked by uid 99); 10 Oct 2009 15:27:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Oct 2009 15:27:22 +0000 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; Sat, 10 Oct 2009 15:27:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E29D223888FC; Sat, 10 Oct 2009 15:26:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r823871 - in /cxf/trunk/systests/wsdl_maven/java2ws: ./ src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java Date: Sat, 10 Oct 2009 15:26:28 -0000 To: commits@cxf.apache.org From: cschneider@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091010152628.E29D223888FC@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cschneider Date: Sat Oct 10 15:26:28 2009 New Revision: 823871 URL: http://svn.apache.org/viewvc?rev=823871&view=rev Log: Added wsdldocumentation and webparam annotation Modified: cxf/trunk/systests/wsdl_maven/java2ws/ (props changed) cxf/trunk/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java Propchange: cxf/trunk/systests/wsdl_maven/java2ws/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Sat Oct 10 15:26:28 2009 @@ -2,3 +2,9 @@ .project .settings target + +.checkstyle + +.pmd + +.ruleset Modified: cxf/trunk/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java URL: http://svn.apache.org/viewvc/cxf/trunk/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java?rev=823871&r1=823870&r2=823871&view=diff ============================================================================== --- cxf/trunk/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java (original) +++ cxf/trunk/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java Sat Oct 10 15:26:28 2009 @@ -19,10 +19,14 @@ package org.apache.cxf.systests.java2ws; +import javax.jws.WebParam; import javax.jws.WebService; +import org.apache.cxf.annotations.WSDLDocumentation; + @WebService +@WSDLDocumentation(value = "A simple service with only one method") public interface HelloWorld { - String sayHi(String text); + @WSDLDocumentation(value = "Simply return the given text") + String sayHi(@WebParam(name = "text") String text); } -