Package oracle.rules.sdk2.dictionary
Class DictionaryObject
java.lang.Object
oracle.rules.sdk2.dictionary.DictionaryObject
- All Implemented Interfaces:
Serializable
,Cloneable
- Direct Known Subclasses:
DictionaryComponent
,DictionaryComponentTable
,IDTable
Base class for a RuleDictionary and its components and component tables.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
_clearID()
Expert Use!boolean
Handles for the same DictionaryObject are equal.final boolean
exists()
obj.exists() means you can reach obj if you start with the dictionary and recursively explore all references.Get the number of references for each unique DOID in all directly or indirectly contained actions and expressionsGet DOIDs referenced by this Object and descendants.Get all DOIDs referenced by this Object and descendants.get the combined data model from containing dictionary and linked dictionariesGet the ID of this object and all objects that it contains, recursively.getContainedIDs
(Set<DOID> addedIDs) Get the data model for the containing dictionaryfinal RuleDictionary
Get the dictionary that contains this component.abstract List<ExprParser>
Get all ExprParsers that are directly or Indirectly referenced by this dictionary Object and its descendantsgetID()
Get dictionary object ID.get the localized path to this object starting with the dictionary, e.g.get the translated name of the type of this dictionary object.getParentByClass
(Class pclass) search the parent chain for an object that correspondes to specified type.get parent dictionary componentget parent dictionary component tableGet the immediate parent objectGet all DOIDs referenced by this Component and IDTable properties, but does not include contained dictionary components.Get the RuleSet containing this dictionary object.int
getState()
getWarnings
(boolean includeDescendants) get Warnings associated with this dictionary object or its descendants.int
hashCode()
Handles for the same DictionaryObject have the same hash codeboolean
void
Set ID of the dictionary object.abstract void
validate
(List<SDKException> errors, List<SDKWarning> warnings) Validate the entire dictionary object and its decendants.void
validate
(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound) Deprecated.void
validate
(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound) Validate the RuleDictionary object.
-
Method Details
-
equals
Handles for the same DictionaryObject are equal. -
hashCode
public int hashCode()Handles for the same DictionaryObject have the same hash code -
getAEReferences
Get DOIDs referenced by this Object and descendants. By convention, properties of type DOID and DOID[] are not considered. This basically makes this useful for finding DOIDs referenced in IDTables and in Expressions and Actions. Note that a parent contains its children but (usually) does not reference them.- Returns:
- list of the DOIDs
-
getAEReferenceCount
Get the number of references for each unique DOID in all directly or indirectly contained actions and expressions -
getAllReferences
Get all DOIDs referenced by this Object and descendants.- Returns:
- list of the DOIDs
-
getReferences
Get all DOIDs referenced by this Component and IDTable properties, but does not include contained dictionary components.- Returns:
- list of the DOIDs
-
getExprParserReferences
Get all ExprParsers that are directly or Indirectly referenced by this dictionary Object and its descendants- Returns:
- Collection of Expression Parsers
-
getParentObject
Get the immediate parent object- Returns:
- immediate DictionaryObject parent
-
getID
Get dictionary object ID. An ID is an identifier for the object. It is invariant across transactions. For components the ID is persistent and thus invariant across saves/loads from disk. For component tables, the ID is not persistent.- Returns:
- ID String
-
_clearID
public void _clearID()Expert Use!call this before
setID(oracle.rules.sdk2.dictionary.DOID)
to prevent setID from clearing the old id. -
setID
Set ID of the dictionary object. Expert Use Only! Used internally to assign constant IDs to builtin dictionary objects.- Parameters:
id
- New ID.
-
exists
public final boolean exists()obj.exists() means you can reach obj if you start with the dictionary and recursively explore all references. TheRuleDictionary.update(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
method actually updates a cache that exists uses to make it fast.- Returns:
- false if this object no longer exists in the dictionary as of the last update.
-
getDictionary
Get the dictionary that contains this component.- Returns:
- containing RuleDictionary
-
getParentByClass
search the parent chain for an object that correspondes to specified type. -
getDataModel
Get the data model for the containing dictionary- Returns:
- DataModel
-
getCombinedDataModel
get the combined data model from containing dictionary and linked dictionaries- Returns:
- CombinedDataModel
-
getRuleSet
Get the RuleSet containing this dictionary object.- Returns:
- containing RuleSet or null if this is not in a RuleSet or is not a RuleSet
-
validate
public void validate(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound, int ruleChangeLowerBound) Validate the RuleDictionary object. Append error and warning exceptions. Errors will causeRuleDictionary.update(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
to throw an exception. A dictionary with warnings but no errors can be persisted.- Parameters:
errors
- a List of error exceptions to append to.warnings
- a List of warning exceptions to append to.modelChangeLowerBound
- smallest ModelComponent.CreationUpdateNumber modified in thix tx.ruleChangeLowerBound
- smallest RuleComponent.CreationUpdateNumber modified in thix tx. Rulesets and rules with UpdateNumber >= modelChangeLowerBound will be revalidated. a value of 0 will force revalidation of all rulesets. A value of Integer.MAX_VALUE will skip validation of all rulesets.
-
validate
@Deprecated public void validate(List<SDKException> errors, List<SDKWarning> warnings, int modelChangeLowerBound) Deprecated. -
validate
Validate the entire dictionary object and its decendants. Not incremental.- Parameters:
errors
- a List of error exceptions to append to.warnings
- a List of warning exceptions to append to.- See Also:
-
getParentComponent
get parent dictionary component- Returns:
- DictionaryComponent parent
-
getParentComponentTable
get parent dictionary component table- Returns:
- DictionaryComponentTable parent
-
getObjectType
get the translated name of the type of this dictionary object.- Returns:
- the translated name of the dictionary object (e.g. Variable, Rules, etc.)
-
getObjectPath
get the localized path to this object starting with the dictionary, e.g. Dictionary(myDic)/Rule Set(rs1)/Decision Table(myDT)- Returns:
- localized path to this object
-
getContainedIDs
Get the ID of this object and all objects that it contains, recursively.- Returns:
- set of ID strings
-
getContainedIDs
-
getWarnings
get Warnings associated with this dictionary object or its descendants. Note that no validation is performed. Only a subset of warnings from the lastRuleDictionary.update(java.util.List<oracle.rules.sdk2.exception.SDKWarning>)
are returned.- Parameters:
includeDescendants
- whether to include warnings bound to this object's descendants.- Returns:
- list of warnings
-
getIndent
-
isModified
public boolean isModified() -
getState
public int getState()
-
validate(List,List)