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;