All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.definition.KnowledgePackage Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.definition;

import java.util.Collection;

import org.drools.definition.process.Process;
import org.drools.definition.rule.Rule;

/**
 * This provides a collection of knowledge definitions that can be given to a KnowledgeBase.
 * The name is used to provide "namespace" separation of those definitions.
 * 
 *
 */
public interface KnowledgePackage {
    /**
     * The namespace for this package
     * @return
     */
    String getName();

    /**
     * Return the rule definitions for this package.
     * The collection is immutable.
     * 
     * @return
     */
    Collection getRules();

    /**
     * Return the process definitions for this package.
     * The collection is immutable.
     * 
     * @return
     */
    Collection getProcesses();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy