...
assertions
- This object is a set of strings, or more specifically,
Set<String>
, and is a placeholder for assertions and is instantiated and given to Drools as a global variable. Drools may write to this set to provide the calling code with the information about the inferencing performed on the input data. (As of today--2014-09-20) the assertions object is not being used external to Drools, as there is a rule that is commonly being used which assembles the assertions into a comma-delimited list, as part of the vMR output.)
- This object is a set of strings, or more specifically,
resultFactLists
- This object is a Map of String to List, or more specifically,
Map<String, List<?>>
. Data contained by this map are the result fact lists, which are the final return value of the DroolsAdapter.getOneResponse method.
- This object is a Map of String to List, or more specifically,
...
cache
- Cache is a cache of data within an OpencdsCache cache region, where plugins may store the data they support for future processing, as in the case of, e.g., SupportingData.
Plugin Configuration
Plugin Data Access
...