You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/03/24 19:59:30 UTC

svn commit: r757954 - in /cxf/branches/2.1.x-fixes: ./ distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/ distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/server/

Author: dkulp
Date: Tue Mar 24 18:59:29 2009
New Revision: 757954

URL: http://svn.apache.org/viewvc?rev=757954&view=rev
Log:
Merged revisions 753397 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r753397 | dkulp | 2009-03-13 16:48:23 -0400 (Fri, 13 Mar 2009) | 2 lines
  
  Fix checkstyle issues in xmlbeans sample
........

Modified:
    cxf/branches/2.1.x-fixes/   (props changed)
    cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/Client.java
    cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/SpringClient.java
    cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/server/GreeterImpl.java

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Tue Mar 24 18:59:29 2009
@@ -1 +1 @@
-/cxf/trunk:753380
+/cxf/trunk:753380,753397

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/Client.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/Client.java?rev=757954&r1=757953&r2=757954&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/Client.java (original)
+++ cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/Client.java Tue Mar 24 18:59:29 2009
@@ -23,11 +23,11 @@
 import java.net.URL;
 import javax.xml.namespace.QName;
 import javax.xml.ws.WebServiceException;
+import org.apache.helloWorldSoapHttp.types.FaultDetailDocument;
+import org.apache.helloWorldSoapHttp.types.FaultDetailDocument.FaultDetail;
 import org.apache.hello_world_soap_http.Greeter;
 import org.apache.hello_world_soap_http.PingMeFault;
 import org.apache.hello_world_soap_http.SOAPService;
-import org.apache.helloWorldSoapHttp.types.FaultDetailDocument;
-import org.apache.helloWorldSoapHttp.types.FaultDetailDocument.FaultDetail;
 
 public final class Client {
 

Modified: cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/SpringClient.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/SpringClient.java?rev=757954&r1=757953&r2=757954&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/SpringClient.java (original)
+++ cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/client/SpringClient.java Tue Mar 24 18:59:29 2009
@@ -21,10 +21,10 @@
 
 import javax.xml.ws.WebServiceException;
 
-import org.apache.hello_world_soap_http.Greeter;
-import org.apache.hello_world_soap_http.PingMeFault;
 import org.apache.helloWorldSoapHttp.types.FaultDetailDocument;
 import org.apache.helloWorldSoapHttp.types.FaultDetailDocument.FaultDetail;
+import org.apache.hello_world_soap_http.Greeter;
+import org.apache.hello_world_soap_http.PingMeFault;
 
 import org.springframework.context.support.ClassPathXmlApplicationContext;
 

Modified: cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/server/GreeterImpl.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/server/GreeterImpl.java?rev=757954&r1=757953&r2=757954&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/server/GreeterImpl.java (original)
+++ cxf/branches/2.1.x-fixes/distribution/src/main/release/samples/wsdl_first_xmlbeans/src/demo/hw/server/GreeterImpl.java Tue Mar 24 18:59:29 2009
@@ -20,10 +20,10 @@
 package demo.hw.server;
 
 import java.util.logging.Logger;
-import org.apache.hello_world_soap_http.Greeter;
-import org.apache.hello_world_soap_http.PingMeFault;
 import org.apache.helloWorldSoapHttp.types.FaultDetailDocument;
 import org.apache.helloWorldSoapHttp.types.FaultDetailDocument.FaultDetail;
+import org.apache.hello_world_soap_http.Greeter;
+import org.apache.hello_world_soap_http.PingMeFault;
 
 @javax.jws.WebService(portName = "SoapPort", serviceName = "SOAPService", 
                       targetNamespace = "http://apache.org/hello_world_soap_http", 
@@ -64,7 +64,8 @@
     
     public void pingMe() throws PingMeFault {
         // here we need to put the FaultDetail into the FaultDetailDocument
-        FaultDetailDocument faultDocument = org.apache.helloWorldSoapHttp.types.FaultDetailDocument.Factory.newInstance();        
+        FaultDetailDocument faultDocument 
+            = org.apache.helloWorldSoapHttp.types.FaultDetailDocument.Factory.newInstance();
         FaultDetail faultDetail = faultDocument.addNewFaultDetail();
         faultDetail.setMajor((short)2);
         faultDetail.setMinor((short)1);