You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2007/12/03 22:48:55 UTC

svn commit: r600701 - /incubator/cxf/trunk/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm

Author: dkulp
Date: Mon Dec  3 13:48:55 2007
New Revision: 600701

URL: http://svn.apache.org/viewvc?rev=600701&view=rev
Log:
[CXF-1237] Make statics public to make them more usable

Modified:
    incubator/cxf/trunk/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm

Modified: incubator/cxf/trunk/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/trunk/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm?rev=600701&r1=600700&r2=600701&view=diff
==============================================================================
--- incubator/cxf/trunk/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm (original)
+++ incubator/cxf/trunk/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/service.vm Mon Dec  3 13:48:55 2007
@@ -41,10 +41,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;