Author: ningjiang Date: Thu Mar 31 07:23:21 2011 New Revision: 1087204 URL: http://svn.apache.org/viewvc?rev=1087204&view=rev Log: Fixed the CS errors of camel-cxf
Modified: camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/DefaultSEI.java camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchMessageTest.java camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchPayloadTest.java camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchTestSupport.java Modified: camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/DefaultSEI.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/DefaultSEI.java?rev=1087204&r1=1087203&r2=1087204&view=diff ============================================================================== --- camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/DefaultSEI.java (original) +++ camel/trunk/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/DefaultSEI.java Thu Mar 31 07:23:21 2011 @@ -34,10 +34,10 @@ import javax.jws.soap.SOAPBinding.Parame public interface DefaultSEI { @Oneway - @WebMethod(operationName="InvokeOneWay") + @WebMethod(operationName = "InvokeOneWay") void invokeOneWay(@WebParam(partName = "InvokeOneWayRequest", mode = WebParam.Mode.IN)String in); - @WebMethod(operationName="Invoke") + @WebMethod(operationName = "Invoke") void invoke(@WebParam(partName = "InvokeRequest", mode = WebParam.Mode.IN)String in, @WebParam(partName = "InvokeResponse", mode = WebParam.Mode.OUT)String out); } Modified: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchMessageTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchMessageTest.java?rev=1087204&r1=1087203&r2=1087204&view=diff ============================================================================== --- camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchMessageTest.java (original) +++ camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchMessageTest.java Thu Mar 31 07:23:21 2011 @@ -6,7 +6,7 @@ * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -29,6 +29,7 @@ import org.springframework.context.suppo import org.springframework.context.support.ClassPathXmlApplicationContext; + /** * Unit test for setting arbitrary payload in MESSAGE mode */ Modified: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchPayloadTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchPayloadTest.java?rev=1087204&r1=1087203&r2=1087204&view=diff ============================================================================== --- camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchPayloadTest.java (original) +++ camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchPayloadTest.java Thu Mar 31 07:23:21 2011 @@ -6,7 +6,7 @@ * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -23,14 +23,13 @@ import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; -import org.junit.Test; -import org.springframework.context.support.AbstractApplicationContext; -import org.springframework.context.support.ClassPathXmlApplicationContext; import org.apache.camel.Exchange; import org.apache.camel.Processor; import org.apache.camel.component.cxf.converter.CxfPayloadConverter; import org.apache.cxf.binding.soap.SoapHeader; - +import org.junit.Test; +import org.springframework.context.support.AbstractApplicationContext; +import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Unit test for setting arbitrary payload in PAYLOAD mode Modified: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchTestSupport.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchTestSupport.java?rev=1087204&r1=1087203&r2=1087204&view=diff ============================================================================== --- camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchTestSupport.java (original) +++ camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfDispatchTestSupport.java Thu Mar 31 07:23:21 2011 @@ -6,7 +6,7 @@ * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -23,19 +23,17 @@ import javax.xml.ws.Endpoint; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; - -import org.junit.AfterClass; -import org.junit.BeforeClass; import org.apache.camel.test.junit4.CamelSpringTestSupport; import org.apache.hello_world_soap_http.GreeterImpl; +import org.junit.AfterClass; +import org.junit.BeforeClass; + /** * Base class for testing arbitrary payload */ public abstract class CxfDispatchTestSupport extends CamelSpringTestSupport { protected static Endpoint endpoint; - private static DocumentBuilderFactory documentBuilderFactory; - protected static final String DISPATCH_NS = "http://camel.apache.org/cxf/jaxws/dispatch"; protected static final String INVOKE_NAME = "Invoke"; protected static final String INVOKE_ONEWAY_NAME = "InvokeOneWay"; @@ -47,7 +45,8 @@ public abstract class CxfDispatchTestSup + "</soap:Body></soap:Envelope>"; protected static final String MESSAGE_ONEWAY_TEMPLATE = "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"><soap:Body>" + PAYLOAD_ONEWAY_TEMPLATE - + "</soap:Body></soap:Envelope>"; + + "</soap:Body></soap:Envelope>"; + private static DocumentBuilderFactory documentBuilderFactory; @Override public boolean isUseRouteBuilder() {