You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2006/07/27 17:28:10 UTC

svn commit: r426101 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/HttpTransportProperties.java

Author: dims
Date: Thu Jul 27 08:28:10 2006
New Revision: 426101

URL: http://svn.apache.org/viewvc?rev=426101&view=rev
Log:
make the inner classes static to avoid creating an instance of HttpTransportProperties

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/HttpTransportProperties.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/HttpTransportProperties.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/HttpTransportProperties.java?rev=426101&r1=426100&r2=426101&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/HttpTransportProperties.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/HttpTransportProperties.java Thu Jul 27 08:28:10 2006
@@ -53,7 +53,7 @@
         this.protocol = protocol;
     }
 
-    public class ProxyProperties {
+    public static class ProxyProperties {
         protected int proxyPort = -1;
         protected String domain;
         protected String passWord;
@@ -115,7 +115,7 @@
             this.userName = userName;
         }
     }
-    public class BasicAuthentication{
+    public static class BasicAuthentication{
         private String host;
         private int port = -1;
         private String realm;
@@ -162,7 +162,7 @@
             this.password = password;
         }
     }
-    public class NTLMAuthentication{
+    public static class NTLMAuthentication{
         private String host;
         private int port = -1;
         private String realm;



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