Package org.switchyard.bus.camel.audit

Examples of org.switchyard.bus.camel.audit.AuditInterceptStrategy


            throw BusMessages.MESSAGES.maxOneExceptionHandler(handlers.keySet());
        }

        // add default intercept strategy using @Audit annotation
        definition.addInterceptStrategy(new FaultInterceptStrategy());
        definition.addInterceptStrategy(new AuditInterceptStrategy());

        for (Entry<String, InterceptStrategy> interceptEntry : lookup(InterceptStrategy.class).entrySet()) {
            if (log.isDebugEnabled()) {
                log.debug("Adding intercept strategy {} to route {}", interceptEntry.getKey(), _endpoint);
            }
View Full Code Here

TOP

Related Classes of org.switchyard.bus.camel.audit.AuditInterceptStrategy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.