Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 5379 invoked from network); 3 Dec 2007 21:56:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Dec 2007 21:56:35 -0000 Received: (qmail 49049 invoked by uid 500); 3 Dec 2007 21:56:23 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 48978 invoked by uid 500); 3 Dec 2007 21:56:23 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 48969 invoked by uid 99); 3 Dec 2007 21:56:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Dec 2007 13:56:23 -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; Mon, 03 Dec 2007 21:56:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9F28F1A9832; Mon, 3 Dec 2007 13:56:12 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r600706 - in /incubator/cxf/branches/2.0.x-fixes: ./ tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm Date: Mon, 03 Dec 2007 21:56:12 -0000 To: cxf-commits@incubator.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071203215612.9F28F1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Mon Dec 3 13:56:10 2007 New Revision: 600706 URL: http://svn.apache.org/viewvc?rev=600706&view=rev Log: Merged revisions 600701 via svnmerge from https://svn.apache.org/repos/asf/incubator/cxf/trunk ........ r600701 | dkulp | 2007-12-03 16:48:55 -0500 (Mon, 03 Dec 2007) | 2 lines [CXF-1237] Make statics public to make them more usable ........ Modified: incubator/cxf/branches/2.0.x-fixes/ (props changed) incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm Propchange: incubator/cxf/branches/2.0.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm?rev=600706&r1=600705&r2=600706&view=diff ============================================================================== --- incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm (original) +++ incubator/cxf/branches/2.0.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm Mon Dec 3 13:56:10 2007 @@ -43,10 +43,10 @@ #end public class ${service.Name} extends Service { - private final static URL WSDL_LOCATION; - private final static QName SERVICE = new QName("$service.Namespace", "$service.ServiceName"); + public final static URL WSDL_LOCATION; + public final static QName SERVICE = new QName("$service.Namespace", "$service.ServiceName"); #foreach ($port in ${service.Ports}) - private final static QName $port.Name = new QName("$service.Namespace", "$port.PortName"); + public final static QName $port.Name = new QName("$service.Namespace", "$port.PortName"); #end static { URL url = null;