Class RuleDictionary
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,
Object>
RuleDictionary does not provide any concurrency properties. Multiple threads may access a single RuleDictionary instance, but each thread must use its own handle.
Transactions
A transaction consists of all changes made to DictionaryObjects in between invocations ofupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
. Transactions can be undone and redone
using the UndoableEdit
instance returned from a call to update.
A handle can be created using the createHandle()
method. An application
would have a single RuleDictionary instance which was newly created or read from
a persistent store. This is then shared among shared among different readers
or writers by providing each with a RuleDictionary handle created from calling
createHandle()
. Note that both the instance and handles use the same
RuleDictionary class.
The changes in a transaction are stored in the local RuleDictionary handle
and then moved to the shared RuleDictionary instance when update(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
is called.
Note:When multiple threads are modifying their handle, an
SDKException
will be thrown if update is called and
another handle has called update since the current handle's last call to update.
It also means
that an update may fail with a ConcurrentUpdateException
if
two updates happen nearly simultaneously. In either case, the
transaction should be rolled back using rollback()
.
If concurrent editing is desired, it is recommended that applications implement their own concurrent editing semantics on top of the provided primitives. Take note that allowing truly concurrent editing is very difficult because users can make incompatible changes to a dictionary. In many cases, allowing exclusive access to only one writer at a time is easier to implement and easier to manage in practice.
Note that a thread that only reads from it's handle must periodically
call rollback()
or update(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
in order to see the latest contents
of the main dictionary(even though it has made no changes).
A transaction only covers updates to the main RuleDictionary instance. It does not cover saving the dictionary to a persistent store. In particular, do not save more than one in-memory rule dictionary to the same persistent store. The second save will overwrite the first.
Dictionary Links
Rule dictionaries can link to other rule dictionaries. These links allow a large dictionary to be partitioned into several smaller dictionaries. This affords reuse of a shared data model, or partitioning sensitive rules into a dictionary with stricter access control. For more information seeDictionaryLink
.
DictionaryObject references and removing DictionaryObjects from the Dictionary
The RuleDictionary is a container for the dictionary objects it contains, e.g., thegetRuleSet(String)
method returns a RuleSet
object, and then RuleSet.getRuleByName(String)
is a factory that returns a Rule
object, and so forth.
DictionaryComponentTable implements List methods like remove. When a DictionaryObject is removed, subsequent attempts to access properties of the dictionary object will result in a RuntimeException.
Usage Examples
The following examples show how to use the RuleDictionary.create a new rule dictionary in memory
RuleDictionary dic = RuleDictionary.createDictionary("MyDic");
create a ruleset in the dictionary
The example assumes that multiple handles may be updating the Dictionary concurrently. Because the concurrency control is optimistic and does not use locks, the RuleDictionary users must be prepared to retry their updates. Below is a naive example of doing this, using a while(true) loop.RuleDictionary.UndoableEdit undo = null; List warnings = new ArrayList(); while (true) { RuleSet rs = dic.createEmptyRuleSet("newRuleSet"); rs.setDescription("my favorite rules"); try { undo = dic.update(warnings); } catch (ConcurrentUpdateException e) { dic.rollback(); continue; } catch (SDKException e) { dic.rollback(); continue; } break; }
Get a ruleset from the dictionary
Readers should begin with an update, commit, or rollback to ensure they see the latest dictionary updates.UndoableEdit undo = dic.update(warnings); // even if we haven't modified the dictionary, update returns unresolved prior warnings... RuleSet rs = dic.getRuleSet("newRuleSet"); assert rs != null;
Undo the addition of newRuleSet
undo.undo();
The dictionary has no rulesets now
dic.rollback(); // another way to sync up with the latest in-memory dictionary content RuleSet rs = dic.getRuleSet("newRuleSet"); assert rs == null;
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class oracle.rules.sdk2.dictionary.DictionaryComponent
DictionaryComponent.Diff<T extends DictionaryComponent>, DictionaryComponent.DiffSummary, DictionaryComponent.DiffType
-
Field Summary
Fields inherited from class oracle.rules.sdk2.dictionary.DictionaryComponent
PROP_ACCESS, PROP_ACTION_SELECTED, PROP_ACTION_TABLE, PROP_ACTIVE, PROP_ACTUAL_TEST_OUTPUT_TABLE, PROP_ADHOC_TEST_VALIDATION, PROP_ADVANCED_MODE, PROP_AGGREGATE, PROP_AGGREGATE_TABLE, PROP_ALIAS, PROP_ALLOW_GAPS, PROP_ALWAYS_SELECTED, PROP_ARRAY, PROP_ARRAY_COMPONENT_TYPE, PROP_ARRAY_COMPONENT_TYPE_ID, PROP_ARRAY_FACT_TYPE_TABLE, PROP_AUTO_CONFLICT_RESOLUTION, PROP_AUTO_PATTERN_PROPERTY, PROP_AUTO_SYNC, PROP_BODY, PROP_BUCKET_ID_TABLE, PROP_BUCKET_SET, PROP_BUCKET_SET_ID, PROP_BUCKET_SET_TABLE, PROP_BUCKET_TABLE, PROP_CALENDAR_FORM, PROP_CHECK_RULE_FLOW, PROP_CHILD_DIMENSION_NODES, PROP_CONFLICT, PROP_CONFLICT_POLICY, PROP_CONNECTIVE, PROP_CONSTANT, PROP_CONSTRUCTOR, PROP_CONSTRUCTOR_TABLE, PROP_CREATION_UPDATE_NUMBER, PROP_CURSOR_POSITION, PROP_CUSTOM_BINDING, PROP_DATA_MODEL, PROP_DATA_SOURCE, PROP_DECISION_FUNCTION, PROP_DECISION_FUNCTION_ID, PROP_DECISION_FUNCTION_INPUT_TABLE, PROP_DECISION_FUNCTION_OUTPUT_TABLE, PROP_DECISION_FUNCTION_RULESET_TABLE, PROP_DECISION_FUNCTION_TABLE, PROP_DECISION_MODEL, PROP_DESCRIPTION, PROP_DF_FACT, PROP_DF_FACT_ID, PROP_DICT_LOADING_EXTENSION, PROP_DICTIONARY_LINK_TABLE, PROP_DIMENSION_NODE_TABLE, PROP_DIMENSION_TABLE, PROP_DISALLOW_ERROR_SUPPRESSION, PROP_DRAFT, PROP_DSL_ID, PROP_DSL_PARAMETER_TABLE, PROP_DSL_TABLE, PROP_DSL_VALUE, PROP_DT_ACTION_NODE_TABLE, PROP_DT_ACTION_PARAMETER_NAME, PROP_DTACTION_TABLE, PROP_DTRULE_TABLE, PROP_EFFECTIVE_END_DATE, PROP_EFFECTIVE_START_DATE, PROP_ENUM, PROP_ENUM_BUCKET_SET, PROP_ENUM_BUCKET_SET_ID, PROP_ENUM_TYPE, PROP_EXCEPTION_IDS, PROP_EXCEPTIONS, PROP_EXCLUDED, PROP_EXPECTED_TEST_OUTPUT_TABLE, PROP_EXPRESSION, PROP_EXPRESSION_TABLE, PROP_FACT_PATH, PROP_FACT_PATH_IDS, PROP_FACT_TABLE, PROP_FACT_TYPE, PROP_FACT_TYPE_ID, PROP_FACT_TYPE_IDS, PROP_FACT_TYPE_TABLE, PROP_FACT_TYPES, PROP_FIELD_TABLE, PROP_FINAL, PROP_FORM, PROP_FORMAL_PARAMETER_TABLE, PROP_FUNCTION, PROP_FUNCTION_ID, PROP_FUNCTION_SIGNATURE, PROP_FUNCTION_TABLE, PROP_GENERATED_FROM, PROP_GLOBAL_ALIAS, PROP_ID, PROP_INCLUDE_CHAINED_EXPR, PROP_INCLUDED, PROP_INTERFACE, PROP_INTERFACE_IDS, PROP_INTERFACES, PROP_IS_ABSTRACT, PROP_IS_CONSTANT, PROP_IS_ENUM, PROP_IS_FINAL, PROP_IS_JAXB2, PROP_IS_PRIMARY_KEY, PROP_IS_STATIC, PROP_IS_TOPLEVEL_VIEW_OBJECT, PROP_LEFT, PROP_LIFECYCLE, PROP_LIFECYCLE_DESCRIPTION, PROP_LINK_PATH, PROP_LIST, PROP_LIST_CONTENT_TYPE, PROP_LIST_CONTENT_TYPE_ID, PROP_LOCAL, PROP_LOGICAL, PROP_METHOD_TABLE, PROP_MODIFIERS, PROP_NAME, PROP_NAMESPACE, PROP_NESTED_TABLE, PROP_NO_CONFLICT, PROP_NO_RULE_FIRED_IS_ERROR, PROP_NODE_NAME, PROP_OPERATOR, PROP_OPERATOR_ID, PROP_ORDER_RULES_BY_BUCKET, PROP_OTHERWISE, PROP_OUTPUT_TYPES, PROP_OVERLOADED_PARAMETER_TABLE, PROP_OVERRIDDEN_BY, PROP_OVERRIDE, PROP_PACKAGE, PROP_PARAM, PROP_PARAM_EXPRESSION, PROP_PARAMETER_ALIAS, PROP_PARAMETER_ID, PROP_PARAMETER_LIST, PROP_PARAMETER_NAME, PROP_PARAMETER_REQUIRED, PROP_PARAMETER_TYPE_IDS, PROP_PARAMETER_TYPES, PROP_PARENT_DIMENSION_NODE, PROP_PATTERN_TABLE, PROP_PHRASE_SUGGESTION_FORM, PROP_PREFERENCES, PROP_PREFIX_LINKED_NAMES, PROP_PRIORITY, PROP_PRIVATE_BUCKET_SET, PROP_PROPERTIES, PROP_PROPERTY, PROP_PROPERTY_ID, PROP_PROPERTY_TABLE, PROP_PROPERTY_VALUE_TABLE, PROP_QUALIFIER_PATTERN, PROP_READABLE, PROP_REF_ID, PROP_REPORT_BYUSE_NAMES, PROP_REPORT_PATTERNS, PROP_RESOLVED_TARGET, PROP_RESOLVED_VALUE, PROP_RESOURCE_BUNDLE, PROP_RESTRICT_AUTO_SUGGESTIONS, PROP_RETURN_TYPE, PROP_RIGHT, PROP_RIGHT_SEPARATOR, PROP_RULE_EXEC_ALGORITHM, PROP_RULE_FIRING_LIMIT, PROP_RULE_FIRING_LIMIT_ERROR, PROP_RULE_REPORT_TABLE, PROP_RULE_SET_TABLE, PROP_RULE_SHEET_TABLE, PROP_RULE_TABLE, PROP_RULESET, PROP_RUN_AFTER, PROP_RUN_BEFORE, PROP_SERVICE_CONFIGURATION, PROP_SERVICE_NAME, PROP_SERVICE_NAMESPACE, PROP_SHARED_BUCKET_SET, PROP_SHARED_BUCKET_SET_ID, PROP_SHOW_CONSTANTS, PROP_SHOW_FUNCTIONS, PROP_SHOW_VARIABLES, PROP_SIMPLE_TEST_TABLE, PROP_SOURCE, PROP_STATELESS, PROP_STATIC, PROP_SUPER_CLASS, PROP_SUPER_CLASS_ID, PROP_SUPPORT_XPATH, PROP_SUPPORTS_XPATH_ENABLED, PROP_SYNC_MARK, PROP_SYSTEM, PROP_TARGET, PROP_TARGET_PACKAGE, PROP_TEST_CASE_TABLE, PROP_TEST_FORM, PROP_TEST_INPUT_TABLE, PROP_TEST_MODEL, PROP_TEST_RESULT_TABLE, PROP_TEST_SUITE_TABLE, PROP_TEST_TEMPLATE_TABLE, PROP_TIMESTAMP, PROP_TOKEN_UNDER_CURSOR, PROP_TRANSLATED_ALIAS, PROP_TRANSLATED_DESCRIPTION, PROP_TRANSLATED_GLOBAL_ALIAS, PROP_TRANSLATED_PARAMETER_LIST, PROP_TRANSLATED_QUALIFIER_PATTERN, PROP_TRANSLATED_VALUE, PROP_TRANSLATED_VARIABLE, PROP_TREE, PROP_TREE_MODE, PROP_TYPE, PROP_TYPE_ID, PROP_TYPE_IDS, PROP_TYPES, PROP_UNIQUE_RULESETS, PROP_UNSAVED_TRANSLATED_ALIAS, PROP_UNSAVED_TRANSLATED_DESCRIPTION, PROP_UNSAVED_TRANSLATED_GLOBAL_ALIAS, PROP_UNSAVED_TRANSLATED_QUALIFIER_PATTERN, PROP_UNSAVED_TRANSLATED_VALUE, PROP_UPDATE_NUMBER, PROP_UPDATE_TIME, PROP_VALIDATION, PROP_VALIDATION_UPDATE_NUMBER, PROP_VALUE, PROP_VALUES, PROP_VARIABLE, PROP_VARIABLE_TABLE, PROP_VERBAL_RULE_TABLE, PROP_VERSION, PROP_VERTICAL_ORIENTATION, PROP_VISIBILITY_FILTER, PROP_VISIBILITY_FILTER_ENABLED, PROP_VISIBLE, PROP_WEB_SERVICE, PROP_WRITABLE, PROP_XML_NAME
-
Constructor Summary
ConstructorsConstructorDescriptionRuleDictionary
(DictionaryFinder finder) Internal Use Only.RuleDictionary
(DictionaryFinder finder, boolean loading) -
Method Summary
Modifier and TypeMethodDescriptionvoid
_fire
(DictionaryChangeEvent event) static RuleDictionary
get builtin rule dictionary during its initialization (expert use only)_getObjectByID
(DOID id) lookup in local dictionary only.void
_update()
Allow linked dictionaries to be updated.Add aDictionaryChangeListener
to receive notifications of dictionary changes viaDictionaryChangeEvent
s.void
For internal use.void
static void
convertPatternToSimpleTest
(RuleDictionary dictionary) Utility method to Iterate over the rule dictionary and convert any Rules having PatternTable to SimpleTestvoid
copyTo
(RuleDictionary from) copy to this dictionarystatic RuleDictionary
createDictionary
(String name, DictionaryFinder finder) Create a new rule dictionary.createDictionaryLink
(String pkg, String name) Create a DictionaryLink and add it into the rule dictionary.createEmptyRuleSet
(String name) Create and return an empty RuleSet with the given name.Get a handle to access the dictionary.Generate the RL for the data model in this dictionary and in linked dictionaries.diff
(RuleDictionary that, Object versionInfo) Compute the difference between this dictionary and that one, identified by versionInfo.Generic property getter.final String
getAliasByID
(DOID id) Get alias of DictionaryComponent by its ID.final String
getAliasByID
(DOID id, boolean translate) Get (translated) alias by IDstatic RuleDictionary
get builtin rule dictionaryint
Get accessor for data model components in the combined dictionary DO NOT CACHE the result of this method acrossupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
calls.oracle.rules.sdk2.dmn.CombinedDecisionModel
Get accessor for decision model components in the combined dictionary DO NOT CACHE the result of this method acrossupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
calls.oracle.rules.sdk2.testmodel.CombinedTestModel
Get accessor for test model components in the combined dictionary DO NOT CACHE the result of this method acrossupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
calls.Return dictionary component with given id if it exists in its parent component or table, else null.Get the datamodel from this dictionary.Get DataModel Property.oracle.rules.sdk2.dmn.DecisionModel
Get the DecisionModel table.DictionaryProperty<oracle.rules.sdk2.dmn.DecisionModel>
Get DecisionModel Property.get this dictionary and all linked dictionaries.getDictionary
(String alias) Get Dictionary from all linked dictionaries by aliasGet description of the dictionary.get the finder for linked dictionariesgetDictionaryLink
(String alias) Get the dictionary link by alias.getDictionaryLink
(String pkg, String name) Get the dictionary link by fully qualified name.Get a List of DictionaryLink Aliases that are currently stored in in the RuleDictionary (in-memory copy).Get the dictionary link tableGet DictionaryLinkTable Property.oracle.rules.sdk2.dictionary.exportimport.DictionaryExporter
Get the Exporter for this Dictionaryoracle.rules.sdk2.datamodel.impt.FactTypeImporter
getFTI()
Get fully qualified name of DictionaryComponent by its ID.oracle.rules.sdk2.dictionary.exportimport.DictionaryImporter
Get the Importer for this DictionaryGet the dictionary life cycleGet the dictionary life cycle descriptionget all linked dictionaries (recursively) but not this one.getLinkedDictionaries
(boolean includeBuiltIn) get all linked dictionaries (recursively) but not this one.get the locale that was set for this dictionary.int
Get major version number for software that created this dictionary.getNameByID
(DOID id) Get name of DictionaryComponent by its ID.Get the NumberFormat for this RuleDictionary instance.getObjectByID
(DOID id) Get dictionary object by its ID.Get the Preferences from this dictionary.Get Preferences Property.String[]
Get translator for UserTranslatedPropertyGet the name of the user resource bundle forUserTranslatedProperty
s.Get the user resource bundle control forTranslatedProperty
s.getRuleSet
(String alias) Get the ruleset by alias from this dictionarygetRuleSetAliases
(boolean combined) Get a List of RuleSet Aliases that are currently stored in in the RuleDictionary.getRuleSetInputTypeIDs
(String rsName) getRuleSetInputTypeIDs
(String rsName, boolean activeOnly) String[]
Get rulesets in dictionary (and linked dictionaries) as an option listgetRuleSetOutputTypeIDs
(String rsName) getRuleSetOutputTypeIDs
(String rsName, boolean activeOnly) getRuleSets
(boolean combined) Get a List of RuleSets that are currently stored in in the RuleDictionary.getRuleSets
(String alias) Get the rulesets by alias from this dictionary and linked dictionaries.Get the ruleset table.Get RuleSetTable Property.static SaxHandler
getSaxHandler
(DictionaryFinder finder) Get a handler for SAX parser events.get name of decision service exposing this dictionary's decision functionsString[]
Get translator for TranslatedPropertyString[][]
Get a synopsis of the dictionary contents.oracle.rules.sdk2.testmodel.TestModel
Get the testmodel from this dictionary.DictionaryProperty<oracle.rules.sdk2.testmodel.TestModel>
Get TestModel Property.final String
Get translated alias by IDint
getWarnings
(boolean includeDescendants) get Warnings associated with this dictionary object or its descendants.void
initFromElement
(Element element) Internal use by repositoryvoid
initFromElement
(Element element, boolean skipReplaceTempIDs) Internal use by repositoryboolean
boolean
Deprecated.no replacementboolean
Get the mode for diff merge.boolean
isLinked()
boolean
boolean
boolean
isValid()
is the dictionary valid?parseNumber
(String value) Parse a number.boolean
static boolean
processDecisionTrace
(DecisionTrace trace, RuleDictionary dict) static RuleDictionary
readDictionary
(Reader reader, DictionaryFinder finder) Read a RuleDictionary from a Reader.void
reDiff()
Refresh diffs.RemoveDictionaryChangeListener
.removeDictionaryLink
(String alias) Remove dictionary link by name.removeRuleSet
(String name) Remove ruleset by name.void
If the resource bundle file is changed, call this method, followed byupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
, to cause the SDK to re-read the bundlevoid
rollback()
rollback the current update transaction.Generate the RL for the given rule set in this dictionary and in linked dictionaries.boolean
void
setCustomizationMode
(boolean flag) Deprecated.no replacementvoid
Set description to the dictionary.void
setDictionaryFinder
(DictionaryFinder finder) set the finder for linked dictionariesvoid
setDiffMergeMode
(boolean merge) Set diff merge mode.void
setLifeCycle
(String lifecycle) Set the dictionary life cyclevoid
setLifeCycleDescription
(String description) Set the dictionary life cycle descriptionvoid
set the locale.void
setResourceBundle
(String name) Set the name of the user resource bundle forUserTranslatedProperty
s.void
Set the user resource bundle control forTranslatedProperty
s.void
setScanScopedVarsUsingAutoBindingContext
(boolean scanScopedVarsUsingAutoBindingContext) void
void
setServiceName
(String sn) void
Internal use by repositoryupdate
(List<SDKWarning> exceptions) Update the RuleDictionary.void
validate
(List<SDKException> errors, List<SDKWarning> warnings) Validate and append errors and warnings.void
validate
(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound) Validate the dictionary by validating its contents.void
writeDictionary
(Writer writer) Write a RuleDictionary to a Writer.Methods inherited from class oracle.rules.sdk2.dictionary.DictionaryName
getFullyQualifiedName, getPackage, getPackageProperty, isFullyQualifiedName, setPackage
Methods inherited from class oracle.rules.sdk2.dictionary.DictionaryComponent
_get, _put, clear, containsKey, containsValue, entrySet, forceSync, getAEReferences, getAlias, getAlias, getAlias, getAlias, getAliasProperty, getAllReferences, getContainedDiffs, getCustom, getDependents, getDescription, getDescription, getDescriptionProperty, getDiff, getDiffMatchValue, getDiffProperties, getDiffs, getExprParserReferences, getFullyQualifiedAlias, getIndex, getIndex, getName, getNameProperty, getNext, getNext, getObjectPath, getOptions, getPrevious, getPrevious, getProperties, getProperty, getReferences, getSelected, getTranslatedAlias, getTranslatedAlias, getTranslatedDescription, hasConflict, hasDiff, init, init, isAliasDistinct, isEmpty, isModifiable, isNameDistinct, isSystemProperty, isUnsavedTranslatedAlias, isUnsavedTranslatedDescription, keySet, put, putAll, remove, removeDiff, setAlias, setAlias, setCustom, setDescription, setDescription, setName, setTranslatedAlias, setTranslatedDescription, size, validate, values
Methods inherited from class oracle.rules.sdk2.dictionary.DictionaryObject
_clearID, equals, exists, getAEReferenceCount, getContainedIDs, getContainedIDs, getDictionary, getID, getIndent, getObjectType, getParentByClass, getParentComponent, getParentComponentTable, getParentObject, getRuleSet, getState, hashCode, isModified, setID, validate
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
RuleDictionary
Internal Use Only. -
RuleDictionary
- Throws:
SDKException
-
-
Method Details
-
getFTI
public oracle.rules.sdk2.datamodel.impt.FactTypeImporter getFTI() -
getChangeCount
public int getChangeCount() -
bumpChangeCount
public void bumpChangeCount() -
getAddedIDs
-
getRemovedIDs
-
isCustomizationMode
Deprecated.no replacement -
setCustomizationMode
Deprecated.no replacement -
getPropertyNames
- Overrides:
getPropertyNames
in classDictionaryName<RuleDictionary>
- Returns:
- Array of property names available.
-
getStoredPropertyNames
- Overrides:
getStoredPropertyNames
in classDictionaryName<RuleDictionary>
- Returns:
- Array of property names which are persisted in the order in which they appear in the schema.
-
getDictionaryFinder
get the finder for linked dictionaries- Returns:
- DictionaryFinder
-
setDictionaryFinder
set the finder for linked dictionaries -
getLocale
get the locale that was set for this dictionary. The locale controls nls specific behavior of any methods that return a language specific String (e.g., FunctionTemplates). -
setLocale
set the locale. The locale controls which nls specific version of Strings and formatted numbers will be used -
parseNumber
Parse a number. If in double quotes, parse according to the dictionary Locale- Parameters:
value
- to parse- Returns:
- Number or null
-
formatNumber
-
getNumberFormat
Get the NumberFormat for this RuleDictionary instance. One could use this to change the decimal separator, e.g.if (dictionary.getNumberFormat() instanceof DecimalFormat) { DecimalFormat df = (DecimalFormat)dictionary.getNumberFormat(); DecimalFormatSymbols dfs = df.getDecimalFormatSymbols(); dfs.setDecimalSeparator(','); df.setDecimalFormatSymbols(dfs); }
The number format will change when the dictionary locale is changed. Changes to decimal format symbols will be overwritten when the locale is changed.
- Returns:
- NumberFormat
-
getObjectByID
Get dictionary object by its ID. Every DictionaryComponent has a persistent ID. DictionaryObjects have a temporary ID that is stable across transactions but not across save/load from file.If ID is global (starts with "G"), then linked dictionaries are searched as well. If ID is builtin (starts with "B"), then only the builtin dictionary is searched.
- Parameters:
id
- the ID of the DictionaryObject- Returns:
- the Dictionary Object, or null if no object with the ID is in the dictionary
-
getContainedComponentByID
Return dictionary component with given id if it exists in its parent component or table, else null. Useful if this component may have been removed from its parent in this tx- Parameters:
id
-- Returns:
- dictionary component, or null if no contained component with given id exists
-
_getObjectByID
lookup in local dictionary only. Most users should use#getObjectByID
because it will search linked dictionaries as well.- Parameters:
id
- dictionary object id- Returns:
- DictionaryObject with given id
-
getAliasByID
Get alias of DictionaryComponent by its ID. Prepends containing dictionary alias if not this. A null parameter will throw a NullPointerException.- Parameters:
id
- String- Returns:
- alias, or Java name if id does not map to DictionaryComponent and isJavaID, else ""
-
getAliasByID
Get (translated) alias by ID- Parameters:
id
- of DictionaryComponenttranslate
- flag- Returns:
- alias, optionally translated, or Java name if that's all we have
-
getTranslatedAliasByID
Get translated alias by ID- Parameters:
id
- of DictionaryComponent- Returns:
- translated alias or "" if none
-
getNameByID
Get name of DictionaryComponent by its ID. A null parameter will throw a NullPointerException.- Parameters:
id
- String- Returns:
- name, or "" if id does not map to DictionaryComponent
-
getFullyQualifiedNameByID
Get fully qualified name of DictionaryComponent by its ID. A null parameter will throw a NullPointerException- Parameters:
id
- String- Returns:
- name, or "" if id does not map to DictionaryComponent
-
readDictionary
public static RuleDictionary readDictionary(Reader reader, DictionaryFinder finder) throws SDKException, IOException Read a RuleDictionary from a Reader.The content of the Reader should have been produced by a prior call to
writeDictionary(java.io.Writer)
. Warning: The returned RuleDictionary has not been updated or validated, and therefore some information may be missing or incorrect. Most users should immediately invokeupdate(List)
on the returnedRuleDictionary
.The Reader parameter should be configured to read the UTF-8 character set. For example, if the dictionary is being read from a file, a common construction would look like:
Reader reader = new BufferedReader( new InputStreamReader( new FileInputStream( new File(DICT_LOCATION)), "UTF-8"));
This method does not close the Reader instance passed to it. It is the responsibility of the caller to close the Reader (typically in a finally block) to prevent a resource leak.
- Parameters:
reader
- containing a rule dictionary documentfinder
- to find linked dictionaries- Returns:
- RuleDictionary
- Throws:
SDKException
- if the dictionary can't be deserializedIOException
- if can't read from Reader
-
convertPatternToSimpleTest
Utility method to Iterate over the rule dictionary and convert any Rules having PatternTable to SimpleTest- Parameters:
dictionary
-
-
createDictionary
public static RuleDictionary createDictionary(String name, DictionaryFinder finder) throws SDKException Create a new rule dictionary.- Parameters:
name
- dictionary namefinder
- finder for linked dictionaries- Throws:
SDKException
-
writeDictionary
Write a RuleDictionary to a Writer.Warning: Rule dictionaries containing validation warnings can be written, just as Java source files with compilation errors can be saved. It is the responsibility of user to ensure a dictionary is valid before it is deployed in an application.
The Writer parameter should be configured to write the UTF-8 character set.
For example, if the dictionary was to be written to the same file it was read from, a common construction would look like:
StringWriter swriter = new StringWriter(); rd.writeDictionary(swriter); Writer writer = null; try { writer = new OutputStreamWriter(new FileOutputStream(new File(fileName)),"UTF-8"); writer.write(swriter.toString()); } finally { if (writer != null) try { writer.close(); } catch (IOException e) {} }
Here we first write the dictionary to a StringWriter to ensure no SDKExceptions are thrown; If instead we first opened the File for writing and an SDKException was thrown, the file would have already been truncated on most platforms. With the above code, this will only happen if an IOException is thrown in the the call to write. If this method is to be used in production code, it is recommended that the user first makes a backup copy of the file before attempting to write to it in order to prevent losing the file if an IOException occurs.
This method does not close the Writer instance passed to it. It is the responsibility of the caller to close the Writer (typically in a finally block) to prevent a resource leak.
- Parameters:
writer
- write the dictionary here- Throws:
SDKException
- if the dictionary can't be serializedIOException
- if can't write to writer
-
createHandle
Get a handle to access the dictionary. Every concurrent thread should have its own handle. Usually, there is only 1 concurrent thread, so this is not a frequently used method. If 2 or more concurrent threads, all but one should be read-only. A handle is a clone of the original dictionary.- Returns:
- RuleDictionary
- Throws:
SDKException
- if the dictionary is invalid- See Also:
-
clone()
-
getDictionaryDescription
Get description of the dictionary.- Returns:
- Description of the dictionary. "" if the dictionary does not have a description.
-
setDictionaryDescription
Set description to the dictionary.- Parameters:
desc
- description of the dictionary.
-
isTransactionInProgress
public boolean isTransactionInProgress()- Returns:
- true if a transaction is in progress (modifications have occurred)
-
assertNotInTransaction
public void assertNotInTransaction()For internal use. Throws an IllegalStateException if a transaction is in progress. -
update
public UndoableEdit update(List<SDKWarning> exceptions) throws SDKException, ConcurrentUpdateException Update the RuleDictionary. If exceptions is not null, validation exceptions that can be tolerated in the dictionary are returned rather than thrown, and the update succeeds. The update is atomic. If exceptions are thrown, no updates are performed. Note that readers must call update() to see updates that occur after their first read.- Parameters:
exceptions
- a List of exceptions to append to.- Returns:
- UndoableEdit object that can be used to undo/redo the update.
- Throws:
SDKException
- if invalid and exceptions is null.ConcurrentUpdateException
- if this dictionary version was updated by another thread.
-
_fire
-
validate
public void validate(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound) Validate the dictionary by validating its contents. If the DataModel or DictionaryLinkTable is updated or had warnings from the previous validation, then the entire dictionary is validated. Else, only rulesets that were updated or had warnings are validated.- Overrides:
validate
in classDictionaryObject
- Parameters:
errors
- List of errors returnedwarnings
- List of warnings returnedmodelChangeLowerBound
- GLB of CUNs of updated model componentsruleChangeLowerBound
- GLB of CUNs of updated rulesets
-
validate
Description copied from class:DictionaryComponent
Validate and append errors and warnings.- Overrides:
validate
in classDictionaryComponent<RuleDictionary>
- Parameters:
errors
- a List of error exceptions to append to.warnings
- a List of warning exceptions to append to.- See Also:
-
getDictionaries
get this dictionary and all linked dictionaries. the main (builtin) dictionary is last.- Returns:
- List of RuleDictionary
-
isPrefixLinkedNames
public boolean isPrefixLinkedNames() -
isLinked
public boolean isLinked() -
getDictionary
Get Dictionary from all linked dictionaries by alias- Parameters:
alias
- of dictionary- Returns:
- RuleDictionary
-
getLinkedDictionaries
get all linked dictionaries (recursively) but not this one. the main dictionary is last.- Returns:
- List of RuleDictionary
-
getLinkedDictionaries
get all linked dictionaries (recursively) but not this one.- Parameters:
includeBuiltIn
- boolean flag to include/exclude the BuiltInDictionary- Returns:
- List of RuleDictionaries
-
getDataModelProperty
Get DataModel Property.- Returns:
- DataModel DictionaryProperty
-
getDataModel
Get the datamodel from this dictionary.- Overrides:
getDataModel
in classDictionaryObject
- Returns:
- DataModel
-
getTestModelProperty
Get TestModel Property.- Returns:
- TestModel DictionaryProperty
-
getTestModel
public oracle.rules.sdk2.testmodel.TestModel getTestModel()Get the testmodel from this dictionary. -
getPreferencesProperty
Get Preferences Property.- Returns:
- Preferences DictionaryProperty
-
getPreferences
Get the Preferences from this dictionary. -
getCombinedDataModel
Get accessor for data model components in the combined dictionary DO NOT CACHE the result of this method acrossupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
calls.- Overrides:
getCombinedDataModel
in classDictionaryObject
- Returns:
- CombinedDataModel
-
getCombinedTestModel
public oracle.rules.sdk2.testmodel.CombinedTestModel getCombinedTestModel()Get accessor for test model components in the combined dictionary DO NOT CACHE the result of this method acrossupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
calls.- Returns:
- CombinedTestModel
-
getCombinedDecisionModel
public oracle.rules.sdk2.dmn.CombinedDecisionModel getCombinedDecisionModel()Get accessor for decision model components in the combined dictionary DO NOT CACHE the result of this method acrossupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
calls.- Returns:
- CombinedDecisionModel
-
createEmptyRuleSet
Create and return an empty RuleSet with the given name.- Parameters:
name
- of ruleset to create- Returns:
- new empty ruleset or null if ruleset already exists
-
getRuleSetAliases
Get a List of RuleSet Aliases that are currently stored in in the RuleDictionary.The list is ordered by Java String comparison.
- Parameters:
combined
- whether to get rule set aliases from linked dictionaries- Returns:
- Array of RuleSet aliases
-
getRuleSets
Get a List of RuleSets that are currently stored in in the RuleDictionary. If combined, then several dictionaries can contain a ruleset with the same alias. Only the first ruleset encountered is returned, so that all the returned rulesets have distinct aliases.The list is ordered by Java String comparison.
- Parameters:
combined
- whether to get rule sets from linked dictionaries- Returns:
- List of RuleSets
-
getRuleSet
Get the ruleset by alias from this dictionary- Parameters:
alias
- ruleset alias
-
getRuleSets
Get the rulesets by alias from this dictionary and linked dictionaries.- Parameters:
alias
- ruleset alias
-
getRuleSetTableProperty
Get RuleSetTable Property.- Returns:
- RuleSet TableProperty
-
getRuleSetTable
Get the ruleset table.- Returns:
- RuleSetTable
-
removeRuleSet
Remove ruleset by name.- Parameters:
name
- ruleset to remove- Returns:
- RuleSet removed
-
createDictionaryLink
Create a DictionaryLink and add it into the rule dictionary.- Parameters:
pkg
- package of the linked dictionaryname
- name of the linked dictionary- Returns:
- the newly created DictionaryLink
-
getDictionaryLink
Get the dictionary link by fully qualified name.- Parameters:
name
- name
-
getDictionaryLink
Get the dictionary link by alias.- Parameters:
alias
- dictionary link alias
-
getDictionaryLinkTableProperty
Get DictionaryLinkTable Property.- Returns:
- DictionaryLink TableProperty
-
getDictionaryLinkTable
Get the dictionary link table- Returns:
- OptionsSetTable
-
removeDictionaryLink
Remove dictionary link by name.- Parameters:
alias
- of linked dictionary to remove- Returns:
- RuleSet removed
-
getDictionaryLinkAliases
Get a List of DictionaryLink Aliases that are currently stored in in the RuleDictionary (in-memory copy).- Returns:
- List of DictionaryLink names
-
getDecisionModelProperty
Get DecisionModel Property.- Returns:
- DecisionModel DictionaryProperty
-
getDecisionModel
public oracle.rules.sdk2.dmn.DecisionModel getDecisionModel()Get the DecisionModel table.- Returns:
- DecisionModelTable
-
isValid
public boolean isValid()is the dictionary valid?- Returns:
- boolean result
-
dataModelRL
Generate the RL for the data model in this dictionary and in linked dictionaries. The RL will be contained in a rule set with the same name as the immediately containing dictionary. In order to execute a rule set from the dictionary, it is first necessary to execute the data model generated code first in theRuleSession
.- Returns:
- the RL for the data model rule set
- Throws:
SDKException
-
ruleSetRL
Generate the RL for the given rule set in this dictionary and in linked dictionaries. In order to execute a rule set from the dictionary, it is first necessary to execute the data model generated code first in theRuleSession
.- Parameters:
alias
- alias of the ruleSet for which to generate code- Returns:
- the RL for the data model rule set
- Throws:
SDKException
-
addDictionaryChangeListener
Add aDictionaryChangeListener
to receive notifications of dictionary changes viaDictionaryChangeEvent
s.- Parameters:
listener
- aDictionaryChangeListener
- Returns:
- always null
-
removeDictionaryChangeListener
RemoveDictionaryChangeListener
.- Parameters:
listener
- aDictionaryChangeListener
- Returns:
- always null
- See Also:
-
rollback
public void rollback()rollback the current update transaction. Discard any updated DictionaryObjects! -
toDocument
Internal use by repository- Throws:
oracle.rules.sdk2.store.DocumentException
SDKException
-
initFromElement
Internal use by repository- Throws:
SDKException
-
initFromElement
Internal use by repository- Throws:
SDKException
-
getUpdateNumber
public int getUpdateNumber() -
getBuiltinDictionary
get builtin rule dictionary -
_getBuiltinDictionary
get builtin rule dictionary during its initialization (expert use only) -
getLifeCycle
Get the dictionary life cycle- Returns:
- the life cycle name
-
setLifeCycle
Set the dictionary life cycle- Parameters:
lifecycle
- the life cycle
-
getLifeCycleDescription
Get the dictionary life cycle description- Returns:
- the life cycle description
-
setLifeCycleDescription
Set the dictionary life cycle description- Parameters:
description
- the life cycle description
-
copyTo
copy to this dictionary- Parameters:
from
- dictionary to copy from
-
getResourceBundle
Get the name of the user resource bundle forUserTranslatedProperty
s. This is the first argument toResourceBundle.getBundle(String,Locale)
By convention, the name of the bundle is obtained from the dictionary name by appending 'Translations' to it- Returns:
- name of bundle
-
setResourceBundle
Set the name of the user resource bundle forUserTranslatedProperty
s. This is the first argument toResourceBundle.getBundle(String,Locale)
By convention, the name of the bundle is obtained from the dictionary name by appending 'Translations' to it Setting to "" turns off translation -
resourceBundleChanged
public void resourceBundleChanged()If the resource bundle file is changed, call this method, followed byupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
, to cause the SDK to re-read the bundle -
getResourceBundleControl
Get the user resource bundle control forTranslatedProperty
s. This is the third argument toResourceBundle.getBundle(String,Locale,ResourceBundle.Control)
- Returns:
- name of bundle
-
setResourceBundleControl
Set the user resource bundle control forTranslatedProperty
s. This is the third argument toResourceBundle.getBundle(String,Locale,ResourceBundle.Control)
- Parameters:
control
- must be serializable
-
getWarnings
Description copied from class:DictionaryObject
get Warnings associated with this dictionary object or its descendants. Note that no validation is performed. Only a subset of warnings from the lastupdate(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
are returned.- Overrides:
getWarnings
in classDictionaryObject
- Parameters:
includeDescendants
- whether to include warnings bound to this object's descendants.- Returns:
- list of warnings
-
getRuleSetOptions
Get rulesets in dictionary (and linked dictionaries) as an option list- Returns:
- String[] of ruleset names
-
getRuleSetInputTypeIDs
-
getRuleSetInputTypeIDs
-
getRuleSetOutputTypeIDs
-
getRuleSetOutputTypeIDs
-
get
Description copied from class:DictionaryComponent
Generic property getter.Please see the specific bean class for a list of properties.
- Specified by:
get
in interfaceMap<String,
Object> - Overrides:
get
in classDictionaryComponent<RuleDictionary>
- Parameters:
key
- a String containing the property name to be fetched.- Returns:
- the value corresponding to the key: a String, String[], DictionaryComponent, DictionaryComponentTable, etc.
-
getServiceName
get name of decision service exposing this dictionary's decision functions- Returns:
- String
-
setServiceName
-
getServiceNamespace
-
setServiceNamespace
-
getServiceConfiguration
-
setServiceConfiguration
-
processDecisionTrace
-
processDecisionTrace
-
diff
Compute the difference between this dictionary and that one, identified by versionInfo. Differences will be not be dynamically recomputed untilreDiff()
ed,- Parameters:
that
- RuleDictionaryversionInfo
-- See Also:
-
reDiff
public void reDiff()Refresh diffs. Useful after a session of applyDiff from multiple versions. -
isDiffMergeMode
public boolean isDiffMergeMode()Get the mode for diff merge.- Returns:
- true if dictionary is in diff-merge mode, or false if diff mode. diff-merge supports editing the base version and accepting changes from one or more versions. diff supports comparing the edited version with 1 prior version, and accepting/rejecting the edits.
-
setDiffMergeMode
public void setDiffMergeMode(boolean merge) Set diff merge mode.- Parameters:
merge
-- See Also:
-
getSynopsis
Get a synopsis of the dictionary contents. The synopsis is an array of pairs of strings. The first in the pair is a decision function name, and the second is a ruleset name. The decision function name may be blank (empty String).- Returns:
- synopsis as array of pairs of Strings (String[][2])
-
getStringTranslator
Get translator for TranslatedProperty -
getPropertyTranslator
Get translator for UserTranslatedProperty -
isBuiltin
public boolean isBuiltin()- Returns:
- whether this is the builtin dictionary
-
getSaxHandler
Get a handler for SAX parser events. The handler may be used to parse a RuleDictionary and retrieve it usingSaxHandler.getDictionary()
- Parameters:
finder
-- Returns:
- SAX ContentHandler
-
getExporter
public oracle.rules.sdk2.dictionary.exportimport.DictionaryExporter getExporter()Get the Exporter for this Dictionary- Returns:
- Exporter instance that would support exporting from this Dictionary
-
getImporter
public oracle.rules.sdk2.dictionary.exportimport.DictionaryImporter getImporter()Get the Importer for this Dictionary- Returns:
- Importer instance that would support importing to this Dictionary
-
_update
Allow linked dictionaries to be updated. -
getMajorVersionNumber
public int getMajorVersionNumber()Get major version number for software that created this dictionary. E.g. 11, 12- Returns:
-
scanScopedVarsUsingAutoBindingContext
public boolean scanScopedVarsUsingAutoBindingContext() -
setScanScopedVarsUsingAutoBindingContext
public void setScanScopedVarsUsingAutoBindingContext(boolean scanScopedVarsUsingAutoBindingContext)
-