|
Oracle Fusion Middleware Java API Reference for Oracle Business Rules 11g Release 1 (11.1.1) E10663-02 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
oracle.rules.sdk2.dictionary.DictionaryObject
oracle.rules.sdk2.dictionary.DictionaryComponent
oracle.rules.sdk2.datamodel.ModelComponent
oracle.rules.sdk2.datamodel.UnnamedModelComponent
oracle.rules.sdk2.datamodel.DecisionFunctionRuleSet
public class DecisionFunctionRuleSet
Child of DecisionFunction. Specifies either a contained ruleset by name or decision function by ID.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class oracle.rules.sdk2.dictionary.DictionaryComponent |
|---|
DictionaryComponent.Diff, DictionaryComponent.DiffType |
| Nested classes/interfaces inherited from interface java.util.Map |
|---|
java.util.Map.Entry<K,V> |
| Field Summary | |
|---|---|
static java.lang.String |
FORM_DECISION_FUNCTION |
static java.lang.String |
FORM_RULESET |
| Constructor Summary | |
|---|---|
DecisionFunctionRuleSet(DictionaryObject parent) |
|
| Method Summary | |
|---|---|
java.lang.Object |
get(java.lang.Object key)Generic property getter. |
java.lang.String |
getAlias()Even though we extend UnnamedComponent, we need the variable name to translate expressions from persistent format (`ID`) to user format (name) |
java.lang.String |
getDecisionFunction() |
java.lang.String[] |
getDecisionFunctionOptions() |
SettableProperty<java.lang.String> |
getDecisionFunctionProperty()Get DecisionFunction Property. |
java.lang.String |
getForm() |
SettableProperty<java.lang.String> |
getFormProperty()Get Form Property. |
java.lang.String |
getName()Get name of DictionaryComponent |
DOID |
getRefID() |
java.lang.String |
getRuleSetAlias() |
java.lang.String[] |
getRuleSetOptions() |
SettableProperty<java.lang.String> |
getRuleSetProperty()Get RuleSet Property. |
java.lang.Object |
put(java.lang.String key, java.lang.Object value)Generic property setter. |
void |
setAlias(java.lang.String s)Set alias of the DictionaryComponent. |
void |
setDecisionFunction(java.lang.String alias) |
void |
setDecisionFunctionID(DOID id) |
void |
setForm(java.lang.String form) |
void |
setName(java.lang.String s)Set name of DictionaryComponent |
void |
setRuleSetAlias(java.lang.String ruleSetAlias) |
void |
validate(java.util.List<SDKException> errors, java.util.List<SDKWarning> warnings)Validate and append errors and warnings. |
| Methods inherited from class oracle.rules.sdk2.datamodel.UnnamedModelComponent |
|---|
init, isAliasDistinct, isNameDistinct |
| Methods inherited from class oracle.rules.sdk2.datamodel.ModelComponent |
|---|
getParent, getParentTable, getVisibleProperty, isVisible, setVisible |
| Methods inherited from class oracle.rules.sdk2.dictionary.DictionaryComponent |
|---|
clear, containsKey, containsValue, entrySet, getAlias, getAliasProperty, getAllReferences, getCustom, getDependents, getDescription, getDescriptionProperty, getDiff, getDiffProperties, getDiffs, getFullyQualifiedAlias, getFullyQualifiedName, getNameProperty, getNext, getObjectPath, getOptions, getPrevious, getProperties, getProperty, getSelected, hasDiff, isEmpty, isFullyQualifiedName, keySet, putAll, remove, setCustom, setDescription, size, validate, values |
| Methods inherited from class oracle.rules.sdk2.dictionary.DictionaryObject |
|---|
equals, exists, getAEReferences, getCombinedDataModel, getContainedIDs, getContainedIDs, getDataModel, getDictionary, getID, getIndent, getLevel, getObjectType, getParentByClass, getParentComponent, getParentComponentTable, getParentObject, getReferences, getRuleSet, getState, getWarnings, hashCode, isModified, validate |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface oracle.rules.sdk2.dictionary.UnnamedComponent |
|---|
getPropertyNames |
| Methods inherited from interface java.util.Map |
|---|
equals, hashCode |
| Field Detail |
|---|
public static final java.lang.String FORM_RULESET
public static final java.lang.String FORM_DECISION_FUNCTION
| Constructor Detail |
|---|
public DecisionFunctionRuleSet(DictionaryObject parent)
| Method Detail |
|---|
public java.lang.String getAlias()
getAlias in interface UnnamedComponentgetAlias in class DictionaryComponentpublic void setAlias(java.lang.String s)
DictionaryComponentsetAlias in interface UnnamedComponentsetAlias in class DictionaryComponents - New alias name.public java.lang.String getName()
DictionaryComponentgetName in interface UnnamedComponentgetName in class DictionaryComponentpublic void setName(java.lang.String s)
DictionaryComponentsetName in interface UnnamedComponentsetName in class DictionaryComponents - the name of the dictionary componentpublic SettableProperty<java.lang.String> getFormProperty()
public java.lang.String getForm()
public void setForm(java.lang.String form)
public SettableProperty<java.lang.String> getRuleSetProperty()
public java.lang.String getRuleSetAlias()
public void setRuleSetAlias(java.lang.String ruleSetAlias)
public java.lang.String[] getRuleSetOptions()
public DOID getRefID()
public SettableProperty<java.lang.String> getDecisionFunctionProperty()
public void setDecisionFunctionID(DOID id)
public java.lang.String getDecisionFunction()
public void setDecisionFunction(java.lang.String alias)
public java.lang.String[] getDecisionFunctionOptions()
public java.lang.Object get(java.lang.Object key)
DictionaryComponentPlease see the specific bean class for a list of properties.
get in interface java.util.Map<java.lang.String,java.lang.Object>get in class UnnamedModelComponentkey - a String containing the property name to be fetched.
public java.lang.Object put(java.lang.String key,
java.lang.Object value)
DictionaryComponentA put() with either null key or null value throws a NullPointerException.
A put() with a key that is not a String throws a ClassCastException
A put() of a value that is not of the correct type for the key throws a ClassCastException.
Bean properties which have no set() method are read only, and cannot be modified using the put(). Attempting to do so throws a runtime IllegalArgumentException. PROP_ID, and PROP_*_SELECTED are always read only.
put in interface java.util.Map<java.lang.String,java.lang.Object>put in class UnnamedModelComponentkey - the key of the property to setvalue - the value of the named property to set
public void validate(java.util.List<SDKException> errors,
java.util.List<SDKWarning> warnings)
DictionaryComponentvalidate in class DictionaryComponenterrors - a List of error exceptions to append to.warnings - a List of warning exceptions to append to.DictionaryObject.validate(List,List,int,int)
|
Oracle Fusion Middleware Java API Reference for Oracle Business Rules 11g Release 1 (11.1.1) E10663-02 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||