You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ff...@apache.org on 2013/04/09 10:14:44 UTC

svn commit: r1465923 - /cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java

Author: ffang
Date: Tue Apr  9 08:14:44 2013
New Revision: 1465923

URL: http://svn.apache.org/r1465923
Log:
[CXF-4850]add WebMethod(operationName=) to the inherit wethod to avoid name conflict in wsdl

Modified:
    cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java

Modified: cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java
URL: http://svn.apache.org/viewvc/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java?rev=1465923&r1=1465922&r2=1465923&view=diff
==============================================================================
--- cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java (original)
+++ cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java Tue Apr  9 08:14:44 2013
@@ -18,8 +18,11 @@
  */
 package org.apache.cxf.tools.fortest.inherit;
 
+import javax.jws.WebMethod;
+
 public interface C {
     String hello(String hello);
     String bye(String bye);
+    @WebMethod(operationName = "anotherHello")
     String hello();
 }
\ No newline at end of file