You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by wt...@apache.org on 2009/09/07 03:40:34 UTC

svn commit: r811968 - /camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/soap/headers/CxfMessageHeadersRelayTest.java

Author: wtam
Date: Mon Sep  7 01:40:34 2009
New Revision: 811968

URL: http://svn.apache.org/viewvc?rev=811968&view=rev
Log:
Add SNIPPET tags

Modified:
    camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/soap/headers/CxfMessageHeadersRelayTest.java

Modified: camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/soap/headers/CxfMessageHeadersRelayTest.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/soap/headers/CxfMessageHeadersRelayTest.java?rev=811968&r1=811967&r2=811968&view=diff
==============================================================================
--- camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/soap/headers/CxfMessageHeadersRelayTest.java (original)
+++ camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/soap/headers/CxfMessageHeadersRelayTest.java Mon Sep  7 01:40:34 2009
@@ -581,6 +581,8 @@
                    + hdrToTest.get(1).getHdrAttribute(), "testHdrAttribute"
             .equals(hdrToTest.get(1).getHdrAttribute()));
     }
+    
+    // START SNIPPET: InsertRequestOutHeaderProcessor
 
     public static class InsertRequestOutHeaderProcessor implements Processor {
 
@@ -606,6 +608,11 @@
         
     }
     
+    // END SNIPPET: InsertResponseOutHeaderProcessor
+
+    
+    // START SNIPPET: InsertResponseOutHeaderProcessor
+
     public static class InsertResponseOutHeaderProcessor implements Processor {
 
         public void process(Exchange exchange) throws Exception {
@@ -627,4 +634,7 @@
                                            
         }
     }
+    
+    // END SNIPPET: InsertResponseOutHeaderProcessor
+
 }