You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2008/04/03 17:44:48 UTC

svn commit: r644374 - /webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/URIResolverImpl.java

Author: dims
Date: Thu Apr  3 08:44:46 2008
New Revision: 644374

URL: http://svn.apache.org/viewvc?rev=644374&view=rev
Log:
Changing final fields to static

Modified:
    webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/URIResolverImpl.java

Modified: webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/URIResolverImpl.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/URIResolverImpl.java?rev=644374&r1=644373&r2=644374&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/URIResolverImpl.java (original)
+++ webservices/axis2/trunk/java/modules/metadata/src/org/apache/axis2/jaxws/description/impl/URIResolverImpl.java Thu Apr  3 08:44:46 2008
@@ -41,15 +41,15 @@
 /** This class is used to locate xml schemas that are imported by wsdl documents. */
 public class URIResolverImpl implements URIResolver {
 
-    private final String HTTP_PROTOCOL = "http";
+    private static final String HTTP_PROTOCOL = "http";
 
-    private final String HTTPS_PROTOCOL = "https";
+    private static final String HTTPS_PROTOCOL = "https";
 
-    private final String FILE_PROTOCOL = "file";
+    private static final String FILE_PROTOCOL = "file";
 
-    private final String JAR_PROTOCOL = "jar";
+    private static final String JAR_PROTOCOL = "jar";
     
-    private final String BUNDLE_RESOURCE_PROTOCOL = "bundleresource";
+    private static final String BUNDLE_RESOURCE_PROTOCOL = "bundleresource";
 
     private ClassLoader classLoader;
     



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org