mgubaidullin opened a new issue, #514: URL: https://github.com/apache/camel-karavan/issues/514
import org.apache.camel.Exchange; import org.apache.camel.Processor; import javax.inject.Named; import javax.inject.Singleton; @Singleton @Named("CustomProcessor") public class CustomProcessor implements Processor { public void process(Exchange exchange) throws Exception { exchange.getIn().setBody("Hello world"); } } -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org