You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2010/03/25 18:32:02 UTC

svn commit: r927518 - /tuscany/sca-java-2.x/trunk/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java

Author: slaws
Date: Thu Mar 25 17:32:02 2010
New Revision: 927518

URL: http://svn.apache.org/viewvc?rev=927518&view=rev
Log:
Mainly note to self. Start to clarify WS binding methods. 

Modified:
    tuscany/sca-java-2.x/trunk/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java

Modified: tuscany/sca-java-2.x/trunk/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java?rev=927518&r1=927517&r2=927518&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java (original)
+++ tuscany/sca-java-2.x/trunk/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java Thu Mar 25 17:32:02 2010
@@ -210,5 +210,13 @@ public interface WebServiceBinding exten
      * @param definition the generated WSDL definitions document
      */
     void setWSDLDocument(Definition definition);
+    
+    
+    // TODO - There are a wealth of oddly named methods in this binding 
+    //        We have an opportunity with the JAXWS version of the WS binding
+    //        to re-think how the information here should be present so am 
+    //        going to start adding/moving methods to below this point that 
+    //        (hopefully) give a better idea of where the information is
+    //        derived from. 
 
 }