KIE provides a knowledge-centric API, where rules and processes are first class citizens. The majority of KIE API is considered stable and should not change, experimental classes and APIs will be marked as such.
The most common interfaces you will use are:
org.kie.api.KieBase
org.kie.api.runtime.KieSession
org.kie.api.runtime.StatelessKieSession
org.kie.api.runtime.KieContainer
org.kie.api.builder.ReleaseId
org.kie.api.builder.KieScanner
Factory classes, with static methods, provide instances of the above interfaces. A pluggable provider approach is used to allow provider implementations to be wired up to the factories at runtime. The Factories you will most commonly use are:
org.kie.api.KieServices
org.kie.api.command.KieCommands
org.kie.api.io.KieResources
Typical example of loading and using knowledge resources (rules, processes, etc) found on classpath. By convention the
KIE API expects file META-INF/kmodule.xml
which is a marker file and also enables additional configuration.
For very basic usage the file can just contain <kmodule xmlns="http://www.drools.org/xsd/kmodule"/>
:
KieServices kieServices = KieServices.Factory.get(); KieContainer kieContainer = kieServices.getKieClasspathContainer(); KieSession kieSession = kieContainer.newKieSession(); kieSession.insert(new Fibonacci(10)); kieSession.fireAllRules(); kieSession.dispose();