owenb 2003/03/26 02:46:01
Modified: java/src/org/apache/wsif/wsdl
AuthenticatingProxyWSDLLocatorImpl.java
Log:
Add new constructor that takes (String docBaseURI, Reader docBaseReader,
PasswordAuthentication pa)
Revision Changes Path
1.14 +14 -0
xml-axis-wsif/java/src/org/apache/wsif/wsdl/AuthenticatingProxyWSDLLocatorImpl.java
Index: AuthenticatingProxyWSDLLocatorImpl.java
===================================================================
RCS file:
/home/cvs/xml-axis-wsif/java/src/org/apache/wsif/wsdl/AuthenticatingProxyWSDLLocatorImpl.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- AuthenticatingProxyWSDLLocatorImpl.java 24 Mar 2003 13:10:09 -0000 1.13
+++ AuthenticatingProxyWSDLLocatorImpl.java 26 Mar 2003 10:46:01 -0000 1.14
@@ -125,6 +125,20 @@
passwdAuth = pa;
}
+ /**
+ * Create an instance of AuthenticatingProxyWSDLLocatorImpl.
+ * @param docBaseURI The document base uri for the base wsdl document
+ * @param docBaseReader A Reader for reading the base wsdl document
+ * @param pa Username and password encapsulated in a
java.net.PasswordAuthentication
+ */
+ public AuthenticatingProxyWSDLLocatorImpl(String docBaseURI, Reader
docBaseReader, PasswordAuthentication pa)
+ throws WSDLException {
+
+ this.documentBase = docBaseURI;
+ this.baseReader = docBaseReader;
+ passwdAuth = pa;
+ }
+
/**
* Get an InputSource for the base wsdl document. Returns null if the document
* cannot be located.