- Developing SOA Applications with Oracle SOA Suite
- Using the Business Rules Service Component
- Using Declarative Components and Task Flows
- Introduction to the Oracle Business Rules Dictionary Editor Declarative Component
- How to Create and Run a Sample Application by Using the Rules Dictionary Editor Component
- How to Create the RuleDictionaryModel Object
How to Create the RuleDictionaryModel Object
The Rules Dictionary Editor component requires a oracle.bpel.ruledictionarydc.model.impl.RuleDictionaryModel
object to create the RuleDictionaryModel
object.
To create the RuleDictionaryModel object:
- To create a Java Class e.g. SomeBean.java in your project, from the File menu, select New and then select Java Class.
- In SomeBean.java provide a method that returns the RuleDictionaryModel object. You must specify the location/path of the rules file. The following is an example of
SomeBean.java
:package view; import java.io.BufferedReader; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.Serializable; import java.net.MalformedURLException; import java.net.URL; import oracle.bpel.ruledictionarydc.model.impl.RuleDictionaryModel; import oracle.bpel.ruledictionarydc.model.impl.RulesEditorPreferencesImpl; import oracle.bpel.ruledictionarydc.model.interfaces.RulesEditorPreferences; import oracle.bpel.rulesdc.model.decisiontable.impl.DecisionTablePrefsImpl; import oracle.bpel.rulesdc.model.decisiontable.interfaces.DecisionTablePrefs; import oracle.bpel.rulesdc.model.impl.IfThenPreferencesImpl; import oracle.bpel.rulesdc.model.interfaces.IfThenPreferences; import oracle.bpel.rulessharedutils.impl.RulesSharedUtils; import oracle.rules.sdk2.decisionpoint.DecisionPointDictionaryFinder; import oracle.rules.sdk2.dictionary.DictionaryFinder; import oracle.rules.sdk2.dictionary.RuleDictionary; import oracle.rules.sdk2.exception.SDKException; public class SomeBean { private RuleDictionaryModel ruleDictModel; private RulesEditorPreferences rulesEditorPrefs; private boolean viewOnly = true; //on windows //private static final String RULES_FILE1 = "file:///D:/scratch/asuraj/system_MAIN/rules_ files/insurancequoteproject/CarInsuranceRules.rules"; // on linux private static final String RULES_FILE1 = "file:////scratch/asuraj/backup/rules_files/ApprovalRules.rules"; public SomeBean() { super(); } public RuleDictionaryModel getRuleDictModel() { if (ruleDictModel != null) return ruleDictModel; ruleDictModel = new RuleDictionaryModel(openRulesDict(RULES_FILE1, new DecisionPointDictionaryFinder())); return ruleDictModel; } public void saveDictionary() { RuleDictionary dict = null; if (this.ruleDictModel == null) return; dict = this.ruleDictModel.getRuleDictionary().getDictionary(); if (dict == null) return; if (dict.isModified()) RulesSharedUtils.updateDictionary(dict); if (!dict.isTransactionInProgress()) saveDictionary(dict, RULES_FILE1); } public void validate() { if (this.ruleDictModel == null) return; this.ruleDictModel.validate(); } public void toggleMode() { viewOnly = !viewOnly; } public boolean isViewOnly() { return viewOnly; } public RulesEditorPreferences getRulesEditorPrefs() { if (rulesEditorPrefs == null) rulesEditorPrefs = new MyRulesEditorPrefs(); return rulesEditorPrefs; } //utility methods public static RuleDictionary openRulesDict(String fileName, DictionaryFinder finder) { URL url = null; try { url = new URL(fileName); } catch (MalformedURLException e) { System.err.println(e); return null; } RuleDictionary dict = null; try { dict = readFromDisk(url, finder); } catch (Exception e) { System.err.println(e); return null; } return dict; } public static RuleDictionary readFromDisk(URL dictURL, DictionaryFinder finder) { BufferedReader buf = null; try { buf = new BufferedReader(new InputStreamReader(dictURL.openStream(), "UTF-8")); return RuleDictionary.readDictionary(buf, finder); } catch (SDKException e) { System.err.println(e); } catch (IOException e) { System.err.println(e); } finally { if (buf != null) try { buf.close(); } catch (IOException e) { System.err.println(e); } } return null; } public static boolean saveDictionary(RuleDictionary dict, String ruleFileName) { if (dict == null || ruleFileName == null) return false; if (dict.isTransactionInProgress()) System.out.println("Transaction in progress, cannot save dictionary"); try { writeToDisk(dict, new URL(ruleFileName)); } catch (MalformedURLException e) { System.err.println(e); return false; } catch (Exception e) { System.err.println(e); return false; } return true; } public static void writeToDisk(RuleDictionary dic, URL dictURL) { OutputStreamWriter writer = null; try { writer = new OutputStreamWriter(new FileOutputStream(dictURL.getPath()), "UTF-8"); dic.writeDictionary(writer); } catch (IOException e) { System.err.println(e); } catch (SDKException e) { System.err.println(e); } finally { if (writer != null) try { writer.close(); } catch (IOException e) { System.err.println(e); } } } public class MyRulesEditorPrefs extends RulesEditorPreferencesImpl implements Serializable { private DecisionTablePrefs dtPrefs; private IfThenPreferences ifThenPrefs; @Override public DecisionTablePrefs getDecisionTablePreferences() { if (dtPrefs == null) dtPrefs = new DTPreferences(); return dtPrefs; } @Override public IfThenPreferences getIfThenPreferences() { if (ifThenPrefs == null) ifThenPrefs = new MyIfThenPrefs(); return ifThenPrefs; } @Override public boolean isShowRSButtons() { return true; } } public class MyIfThenPrefs extends IfThenPreferencesImpl implements Serializable { @Override public boolean isGenericAction() { return true; } @Override public boolean isGenericCondition() { return true; } } public class DTPreferences extends DecisionTablePrefsImpl implements Serializable { @Override public boolean isShowDTButtons() { return true; } } }
- Point to SomeBean.java in
adfc-config.xml
with Bean NamesomeBean
and a session scope. Exampleadfc-config.xml
. - Ensure that Java Class under Items is selected and click OK to display the Create Java Class dialog box.
<?xml version="1.0" encoding="UTF-8" ?> <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2"> <managed-bean id="__1"> <managed-bean-name>someBean</managed-bean-name> <managed-bean-class>view.SomeBean</managed-bean-class> <managed-bean-scope>session</managed-bean-scope> </managed-bean> </adfc-config>
- The ADF/JSF framework makes calls to SomeBean.java multiple times to render the UI. For instance, someBean.ruleDictModel is called many times. So it is more efficient to create the ruleDictModel once and cache it and return it each time instead of recreating it.