Package org.kie.api.definition.rule

Examples of org.kie.api.definition.rule.Direct


                if (eager != null) {
                    rule.setEager(eager.value());
                }
            }

            Direct direct = ruleDescr.getTypedAnnotation(Direct.class);
            if (direct != null && direct.value()) {
                rule.setActivationListener("direct");
            }

            rule.setDataDriven(ruleDescr.hasAnnotation(DataDriven.class));
            rule.setAllMatches(ruleDescr.hasAnnotation(All.class));
View Full Code Here

TOP

Related Classes of org.kie.api.definition.rule.Direct

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.