- package camel.gatewaylog.processor;
- import org.apache.camel.Exchange;
- import org.apache.camel.Processor;
- /**
- * @author Airhead
- * @since 2017/3/30.
- */
- public class LogProcesser implements Processor {
- @Override
- public void process(Exchange exchange) throws Exception {
- }
- }
|