- 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 Editor Declarative Component
- How to Create and Run a Sample Application by Using the Rules Editor Component
- How to Create the RuleSetModel Object
How to Create the RuleSetModel Object
The Rules Editor component requires a oracle.bpel.rulesdc.model.impl.RuleSetModel
object.
To create the RuleSetModel object:
- Create a Java Class e.g. 'SomeBean.java' in your project.
- Open Oracle JDeveloper.
- From the File menu, select New and create a Java Class.
- In SomeBean.java provide a method that returns the RuleSetModel object. You must specify the location/path of the rules file.The following is a sample of the
SomeBean.java
file: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.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.impl.RuleSetModel; 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; import oracle.rules.sdk2.ruleset.RuleSet; import oracle.rules.sdk2.ruleset.RuleSetTable; public class SomeBean { //on windows private static final String RULES_FILE1 = "file:///D:/scratch/asuraj/system_MAIN/rules_files/ApprovalRules.rules"; /* * on linux private static final String RULES_FILE1 = "file:////scratch/asuraj/backup/rules_files/ApprovalRules.rules"; */ private RuleSetModel ruleSetModel = null; private boolean viewOnly = true; private DecisionTablePrefs dtPrefs; private IfThenPreferences ifThenPrefs; public SomeBean() { super(); } public RuleSetModel getRuleSetModel() { if (ruleSetModel != null) return ruleSetModel; ruleSetModel = new RuleSetModel(getRuleSet()); System.out.println("ruleSetModel = " + ruleSetModel); return ruleSetModel; } public RuleSet getRuleSet() { RuleDictionary dict = openRulesDict(RULES_FILE1, new DecisionPointDictionaryFinder()); if (dict == null) return null; RuleSetTable ruleSetTable = dict.getRuleSetTable(); if (ruleSetTable == null || ruleSetTable.isEmpty()) return null; return ruleSetTable.get(0); } public void saveDictionary() { RuleDictionary dict = null; String rulesFile = null; if (this.ruleSetModel == null) return; dict = this.ruleSetModel.getRuleSet().getDictionary(); if (dict == null) return; if (dict.isModified()) RulesSharedUtils.updateDictionary(dict); if (!dict.isTransactionInProgress()) saveDictionary(dict, RULES_FILE1); } public void validate() { if (this.ruleSetModel == null) return; this.ruleSetModel.validate(); } //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 void toggleMode() { viewOnly = !viewOnly; } public boolean isViewOnly() { return viewOnly; } public DecisionTablePrefs getDtPreferences() { if (dtPrefs == null) dtPrefs = new DTPreferences(); return dtPrefs; } public IfThenPreferences getIfThenPreferences() { if (ifThenPrefs == null) ifThenPrefs = new MyIfThenPrefs(); return ifThenPrefs; } 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 Name "someBean" and a "session" scope. Example adfc-config.xml:
<?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.ruleSetModel is called many times. So it is more efficient to create the ruleSetModel once and cache it and return it each time instead of recreating it.