Created
June 13, 2013 09:59
-
-
Save andrewharmellaw/5772603 to your computer and use it in GitHub Desktop.
Example Java DSL Route for Camel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mycompany.myapp.route; | |
import org.apache.camel.builder.RouteBuilder; | |
public class TDDRoute extends RouteBuilder { | |
public void configure() { | |
from("file:{{file.inbox}}").to("file:{{file.outbox}}"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment