Author: alexoree
Date: Sat May 11 02:19:55 2013
New Revision: 1481251

URL: http://svn.apache.org/r1481251
Log:
removing the "domain" field, it's not used and isn't required

Modified:
    
juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ReadWSDL.java
    
juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/WSDLLocatorImpl.java

Modified: 
juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ReadWSDL.java
URL: 
http://svn.apache.org/viewvc/juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ReadWSDL.java?rev=1481251&r1=1481250&r2=1481251&view=diff
==============================================================================
--- 
juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ReadWSDL.java
 (original)
+++ 
juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/ReadWSDL.java
 Sat May 11 02:19:55 2013
@@ -65,7 +65,7 @@ public class ReadWSDL {
          * @return a Definition object representing the WSDL
          * @throws WSDLException 
          */
-        public Definition readWSDL(URL wsdlUrl, String username, String 
password, String domain) throws WSDLException {
+        public Definition readWSDL(URL wsdlUrl, String username, String 
password) throws WSDLException {
        
                Definition wsdlDefinition = null;
                WSDLFactory factory = WSDLFactoryImpl.newInstance();
@@ -87,7 +87,7 @@ public class ReadWSDL {
          * @throws WSDLException 
          */
        public Definition readWSDL(URL wsdlUrl) throws WSDLException {
-               return readWSDL(wsdlUrl, null, null, null);
+               return readWSDL(wsdlUrl, null, null);
        }
        
        

Modified: 
juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/WSDLLocatorImpl.java
URL: 
http://svn.apache.org/viewvc/juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/WSDLLocatorImpl.java?rev=1481251&r1=1481250&r2=1481251&view=diff
==============================================================================
--- 
juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/WSDLLocatorImpl.java
 (original)
+++ 
juddi/trunk/juddi-client/src/main/java/org/apache/juddi/v3/client/mapping/WSDLLocatorImpl.java
 Sat May 11 02:19:55 2013
@@ -49,7 +49,7 @@ public class WSDLLocatorImpl implements 
     private InputStream inputStream = null;
     private URI baseURI;
     private String latestImportURI;
-    private String username = null, password = null, domain = null;
+    private String username = null, password = null;
 
     /**
      * Constructor taking the URI to the WSDL. This class implements the
@@ -71,11 +71,10 @@ public class WSDLLocatorImpl implements 
      * @param password
      * @param domain
      */
-    public WSDLLocatorImpl(URI baseURI, String username, String password, 
String domain) {
+    public WSDLLocatorImpl(URI baseURI, String username, String password) {
         this.baseURI = baseURI;
         this.username = username;
         this.password = password;
-        this.domain = domain;
     }
 
     /**



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to