Skip to content

Instantly share code, notes, and snippets.

@ctataryn
Created August 25, 2017 21:33
Show Gist options
  • Save ctataryn/5cdcc7642d034a27a4a8beb58d7641d0 to your computer and use it in GitHub Desktop.
Save ctataryn/5cdcc7642d034a27a4a8beb58d7641d0 to your computer and use it in GitHub Desktop.
from("direct:saveFile")
.transform()
.simple("Content Uploaded")
.to("file:outbox?fileName=myFile.pdf")
.process(new Processor() {
public void process(Exchange exchange) throws Exception {
exchange.getIn().setHeader(Exchange.CONTENT_TYPE, "text/plain");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment