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 na...@apache.org on 2008/12/27 02:36:46 UTC

svn commit: r729578 - /webservices/axis/trunk/c/src/soap/SoapMethod.h

Author: nadiramra
Date: Fri Dec 26 17:36:46 2008
New Revision: 729578

URL: http://svn.apache.org/viewvc?rev=729578&view=rev
Log:
add getURI() method to SoapMethod class.

Modified:
    webservices/axis/trunk/c/src/soap/SoapMethod.h

Modified: webservices/axis/trunk/c/src/soap/SoapMethod.h
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/soap/SoapMethod.h?rev=729578&r1=729577&r2=729578&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/soap/SoapMethod.h (original)
+++ webservices/axis/trunk/c/src/soap/SoapMethod.h Fri Dec 26 17:36:46 2008
@@ -99,6 +99,9 @@
     
     /** Return namespace prefix */
     AxisString getPrefix() { return m_strPrefix; }
+    
+    /** return URI */
+    AxisString getUri() { return m_strUri; }
 };
 
 AXIS_CPP_NAMESPACE_END