org.drools.builder.CompositeKnowledgeBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knowledge-api Show documentation
Show all versions of knowledge-api Show documentation
The Drools and jBPM public API which is backwards compatible between releases.
package org.drools.builder;
import org.drools.io.Resource;
/**
* A KnowledgeBuilder with a fluent interface allowing to add multiple Resources
* at the same time, without worrying about cross dependencies among them.
*/
public interface CompositeKnowledgeBuilder {
/**
* Set the default resource type of all the subsequently added Resources.
*
* @param type the resource type
* @return
*/
CompositeKnowledgeBuilder type(ResourceType type);
/**
* Add a resource of the given ResourceType, using the default type and resource configuration.
*
* @param resource the Resource to add
* @return
*/
CompositeKnowledgeBuilder add(Resource resource);
/**
* Add a resource of the given ResourceType, using the default resource configuration.
*
* @param resource the Resource to add
* @param type the resource type
* @return
*/
CompositeKnowledgeBuilder add(Resource resource, ResourceType type);
/**
* Add a resource of the given ResourceType, using the provided ResourceConfiguration.
* Resources can be created by calling any of the "newX" factory methods of
* ResourceFactory. The kind of resource (DRL, XDRL, DSL,... CHANGE_SET) must be
* indicated by the second argument.
*
* @param resource the Resource to add
* @param type the resource type
* @param configuration the resource configuration
* @return
*/
CompositeKnowledgeBuilder add(Resource resource, ResourceType type, ResourceConfiguration configuration);
/**
* Build all the Resources added during this batch
*/
void build();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy