Package org.servicemix.components.drools

Examples of org.servicemix.components.drools.JbiHelper


* @version $Revision: 564 $
*/
public abstract class JbiConsequence implements Consequence {

    public void invoke(Tuple tuple) throws ConsequenceException {
        JbiHelper helper = (JbiHelper) tuple.getWorkingMemory().getApplicationData("jbi");
        if (helper == null) {
            throw new ConsequenceException("No 'jbi' application data available");
        }
        try {
            invokeJbiOperation(helper, tuple);
View Full Code Here

TOP

Related Classes of org.servicemix.components.drools.JbiHelper

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.