You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2010/03/07 04:15:36 UTC

svn commit: r919916 - /camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayloadFaultTest.java

Author: ningjiang
Date: Sun Mar  7 03:15:33 2010
New Revision: 919916

URL: http://svn.apache.org/viewvc?rev=919916&view=rev
Log:
Fixed the CS errors of camel-cxf

Modified:
    camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayloadFaultTest.java

Modified: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayloadFaultTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayloadFaultTest.java?rev=919916&r1=919915&r2=919916&view=diff
==============================================================================
--- camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayloadFaultTest.java (original)
+++ camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayloadFaultTest.java Sun Mar  7 03:15:33 2010
@@ -52,10 +52,10 @@
     protected static final String WSDL_URL_PROP = "wsdlURL=classpath:person.wsdl";
     protected static final String SERVICE_ADDRESS = "http://localhost:8092/PersonService";
     
-    protected static String FROM_URI = "cxf://" + SERVICE_ADDRESS + "?" 
+    protected static final String FROM_URI = "cxf://" + SERVICE_ADDRESS + "?" 
         + PORT_NAME_PROP + "&" + SERVICE_NAME_PROP + "&" + WSDL_URL_PROP + "&dataFormat=" + DataFormat.PAYLOAD;
 
-    protected static String DETAILS = "<detail><UnknownPersonFault xmlns=\"http://camel.apache.org/wsdl-first/types\">"
+    protected static final String DETAILS = "<detail><UnknownPersonFault xmlns=\"http://camel.apache.org/wsdl-first/types\">"
         + "<personId></personId></UnknownPersonFault></detail>";
     @Override
     protected RouteBuilder createRouteBuilder() {