26 Using Declarative Components and Task Flows
26.1 Introduction to Declarative Components and Task Flows
Declarative components are reusable, composite user interface (UI) components that comprise other existing Application Development Framework (ADF) Faces components.
Consider an application that contains multiple JSF pages. On a particular page, a set of specific components is used in multiple parts of that page. In this scenario, if you make any changes to any of the components in the set, you typically must replicate the changes in multiple parts of the page. This approach makes it difficult to maintain the consistency of the structure and layout of the page. However, by defining a declarative component that comprises the given set of components, you can reuse that composite declarative component in multiple places or pages. Declarative components, thereby, save time and ensure integrity across pages because when you make any changes to the components, the JSF pages using them automatically get updated.
ADF task flows are reusable components that provide a modular and transactional method in specifying the control flow in an application. You can use a set of reusable task flows as an alternative to representing an application as a single large JSF page flow, thereby providing modularity. Each task flow contains a part of the entire navigational plan of the application. The nodes in a task flow are called activities. Apart from navigation, task flow activities can also call methods on managed beans or call another task flow without invoking any particular page. This facilitates reuse because business logic can be invoked independently of the page being displayed.
26.2 Introduction to the Oracle Business Rules Editor Declarative Component
Get an overview of the Oracle Business Rules Editor declarative component.
Learn how to create and run an application using the Rules Editor component, and then deploy the application. Also get an overview of the supported tags and the localization process for the application.
26.2.1 Using the Oracle Business Rules Editor Component
The Oracle Business Rules Editor is a declarative component that can be embedded in any ADF-based web application. The component renders the user interface for rules editing and handles all events associated with rules editing. The Rules Editor uses the Rules SDK2 API to create and edit rules.
Note:
You should not confuse the Rules Editor with the Rules Dictionary Editor. The Rules Editor is used to edit rules inside a specified ruleset. In fact, the Rules Editor is embedded within the Rules Dictionary Editor. For more information about the Rules Dictionary Editor, see Introduction to the Oracle Business Rules Dictionary Editor Declarative Component.
Using the Rules Editor, you can create, delete and edit the general rules, verbal rules, and decision tables that are part of a single ruleset. You are required to specify a RuleSetModel
object, which is a wrapper around the Rules SDK ruleset object, as a parameter to the Rules Editor component. If multiple rulesets are required to be modified, multiple Rules Editor components must be instantiated, one for each ruleset.
The Rules Editor component performs the following functions:
-
Creates, updates, and deletes:
-
Rules in a ruleset, as shown in Figure 26-1.
-
Simple tests or conditions in a rule, as shown in the IF area.
-
Actions in a rule, as shown in the THEN area.
-
Verbal rules, as shown in Figure 26-2.
-
Decision tables, as shown in Figure 26-3.
-
-
Sets effective dates and priorities for rulesets and rules.
-
Provides support for user-defined operators.
-
Provides a Condition Browser pop-up to display the left or right value options, as shown in Figure 26-4.
-
Provides a Date Browser for selecting date types.
-
Provides a Right Operand browser to handle multiple right-hand side expressions.
-
Provides support for nested rules.
-
Provides the Properties browser for editing properties of a rule action, as shown in Figure 26-5.
-
Provides an Expression Builder window to build custom expressions.
-
Provides a Validation panel to manage error messages, as shown in Figure 26-6.
Figure 26-6 Validation Panel to Manage Error Messages
Description of "Figure 26-6 Validation Panel to Manage Error Messages"
Note:
After all the edits are done, the component user is responsible for saving the ruleset.
26.2.2 How to Create and Run a Sample Application by Using the Rules Editor Component
This section lists the steps for creating and running a sample application by using the Rules Editor component.
The prerequisite for using the Rules Editor component to create ADF-based web applications is having a running installation of Oracle SOA Suite and Oracle JDeveloper on your computer.
To create a sample application by using the Rules Editor:
-
Open Oracle JDeveloper.
-
From the File menu, select New.
-
Select ADF Fusion Web Application to create a new application as shown in Figure 26-7.
Figure 26-7 Creating Fusion Web Application
Description of "Figure 26-7 Creating Fusion Web Application" -
Enter a name for the application in the Application Name field, for example,
useRulesDCApp
, and click Next as shown in Figure 26-8.Figure 26-8 Creating a Generic Application
Description of "Figure 26-8 Creating a Generic Application" -
Use the default for everything else.
-
Click Finish.
-
Right click ViewController project and select Project Properties.
-
Select Libraries and Classpath from the menu on the left.
-
-
Click the Add Library button.
-
Select Oracle Rules and Oracle Rules Dictionary Component from the Extension List and click OK. This adds the Rules SDK and the Rules ADF component tag libraries to the project as shown in Figure 26-9.
-
Click OK once more to come out of Project Properties.
Note:
If the 'Oracle Rules' and 'Oracle Rules Dictionary Component' do not show up in the 'Extension' List, open a SOA/BPM project within jDeveloper to load the required libraries.
-
-
Click Save All to save the project.
-
Check to make sure all the required tag libraries are added.
-
-
Right click ViewController project and select Project Properties.
-
Select JSP Tag Libraries from the menu on the left and check if all the tag libraries are added Figure 26-10.
Figure 26-10 Checking the Required Tag Libraries
Description of "Figure 26-10 Checking the Required Tag Libraries" -
26.2.2.1 How to Create the RuleSetModel Object
The Rules Editor component requires a oracle.bpel.rulesdc.model.impl.RuleSetModel
object.
To create the RuleSetModel object:
26.2.2.2 How to Create the .jspx File
The next task is to create the .jspx
file to include the Rules Editor component tag.
To create the .jspx file to include the Rules Editor Component tag:
26.2.2.3 How to Refer to the Oracle Rules Shared Libraries
After creating the .jspx
file, you must refer to the oracle.rules
and oracle.soa.rules_dict_dc.webapp
shared libraries from the weblogic-application.xml
file.
To refer to the oracle.rules and the oracle.soa.rules_dict_dc.webapp shared libraries:
-
In Oracle JDeveloper, from the Application Resources, open Descriptors, and then META-INF. Edit the weblogic-application.xml file and add the following lines (this refers to the oracle.rules shared library.)
<library-ref> <library-name>oracle.rules</library-name> </library-ref>
-
In Oracle JDeveloper,
-
Select File menu, then select New and then Deployment Descriptors.
-
Select Weblogic Deployment Descriptor and select weblogic.xml from the list.
-
Select version 12.1.2 and click Finish.
-
In weblogic.xml overview mode, select Libraries from the left and add
oracle.soa.rules_dict_dc.webapp
as the library name. Example weblogicogic.xml file:<?xml version = '1.0' encoding = 'UTF-8'?> <weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.5/weblogic-web-app.xsd" xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app"> <library-ref> <library-name>oracle.soa.rules_dict_dc.webapp</library-name> </library-ref> </weblogic-web-app>
-
Click Save All.
Note:
Note that oracle.rules and oracle.soa.rules_dict_dc.webapp shared libraries must be deployed to the embedded WLS server.
-
-
All the shared libraries must be deployed using the weblogic console of your embedded WLS:
-
Launch WLS console (
http://
host
:
port
/console/login/LoginForm.jsp
) and log in. -
Click Deployments.
Check if oracle.rules and oracle.soa.rules_dict_dc.webapp shared libraries are deployed as shown in Figure 26-11.
-
-
Deploy the shared libraries manually if they are not deployed.
To start the WLS embedded server:
-
Open JDeveloper.
-
Select Run and then select Start Server Instance as shown in Figure 26-12
Skip this step if the shared libraries are already deployed.
Note:
WLS embedded server on JDeveloper must be running so that the shared libraries can be deployed.
-
-
To deploy the oracle.rules shared library to WLS:
-
Launch WLS console (
http://
host
:
port
/console/login/LoginForm.jsp
) and log in. -
Select Deployments and click Install.
-
Select <SOA_INSTALL>/soa/soa/modules/oracle.rules_11.1.1/rules.jar.
-
Click Next and then click Finish.
-
-
To deploy the oracle.soa.rules_dict_dc.webapp shared library to WLS:
-
In WLS console, select Deployments, click Install.
-
Select <SOA_INSTALL>/soa/soa/modules/oracle.soa.rules_dict_dc.webapp_11.1.1/oracle.soa.rules_dict_dc.webapp.war.
-
Click Next and then click Finish.
-
Select Install this deployment as a library.
-
Click Finish.
-
The oracle.soa.rules_dict_dc.webapp gets added to the list of deployments as shown in Figure 26-11
-
26.2.3 How to Deploy a Rules Editor Application to a Standalone WLS
When you are ready to deploy your application EAR file to the standalone Oracle WebLogic Server, perform the following:
-
Check if the shared libraries are deployed using the WebLogic console of your standalone WLS.
-
Launch WLS console. (
http://
host
:
port
/console/login/LoginForm.jsp
) and log in. -
Click Deployments. Check if oracle.rules and oracle.soa.rules_dict_dc.webapp shared libraries are deployed as showed in Figure 26-11.
-
-
If the shared libraries are not deployed, then refer to the previous steps to deploy the shared libraries manually.
-
In a project that uses the Rules Editor Component:
-
Include Oracle Rules Dictionary Component in your Libraries and Classpath.
This does not deploy these libraries by default, so the jars are not included in your project war file.
-
-
In a project that is deploying (i.e where you create the ear file):
-
Add this to your weblogic-application.xml:
<library-ref> <library-name>oracle.rules</library-name> </library-ref>
-
Add this to weblogic.xml in your project's war file:
<library-ref> <library-name>oracle.soa.rules_dict_dc.webapp</library-name> </library-ref>
-
-
Deploy your ear file in WLS.
For more information about creating an EAR file, see "How to Create an EAR File for Deployment" in Developing Fusion Web Applications with Oracle Application Development Framework.
26.2.4 What You May Need to Know About the Custom Permissions for the Rules Editor Component
For role-based authorization, Rules DC implements custom JAAS permissions (extending the oracle.adf.share.security.authorization.ADFPermission
class to ensure that the permission can be used by ADF security).
If a Rules Editor application supports ADF security, which means there is support for role-based authentication and authorization, then security is enforced by implementing custom JAAS permissions (by extending the oracle.adf.share.security.authorization.ADFPermission
class to ensure that the permission can be used by ADF security). You have to create ADF security policies by granting the following permissions to the user roles based on your application requirement:
-
oracle.rules.adf.permission.AddRulePermission
: Displays the Add Rule button; if permission is not granted, the Add Rule button is not visible to the user. -
oracle.rules.adf.permission.DeleteRulePermission
: Displays the Delete Rule button; if permission is not granted, the Delete Rule button is not visible to the user. -
oracle.rules.adf.permission.EditRulePermission
: Displays the Edit Rule button for rules inside a ruleset; if permission is not granted, then the rules are view-only. -
oracle.rules.adf.permission.AddDTPermission
: Displays the Add Decision Table button; if permission is not granted, the Add Decision Table button is not visible to the user. -
oracle.rules.adf.permission.DeleteDTPermission
: Displays the Delete Decision Table button; if permission is not granted, the Delete Decision Table button is not visible to the user. -
oracle.rules.adf.permission.EditDTPermission
: Displays the Edit Decision Table button for decision tables within a ruleset; if permission is not granted, the decision tables are view-only. -
oracle.rules.adf.permission.RulesEditorPermission
: A global permission that sets all the preceding permissions totrue
.
For example, to grant the delete rule permission to a role, specify the following code in the jazn-data.xml
file of the application:
<policy-store> <applications> <application> <name>UseRuleDictDCWtPerm</name> <app-roles> <app-role> <name>Admin</name> <class>oracle.security.jps.service.policystore.ApplicationRole</class> <display-name>Admin</display-name> <members> <member> <name>admin</name> <class>oracle.security.jps.internal.core.principals.JpsXmlUserImpl</class> </member> </members> </app-role> <app-role> <name>BusinessUser</name> <class>oracle.security.jps.service.policystore.ApplicationRole</class> <display-name>BusinessUser</display-name> <members> <member> <name>buser</name> <class>oracle.security.jps.internal.core.principals.JpsXmlUserImpl</class> </member> </members> </app-role> </app-roles> <jazn-policy> <grant> <grantee> <principals> <principal> <class>oracle.security.jps.service.policystore.ApplicationRole</class> <name>Admin</name> </principal> </principals> </grantee> <permissions> <permission> <class>oracle.rules.adf.permission.RulesEditorPermission</class> <name>RulesEditorPermission</name> <actions>access</actions> </permission> </permissions> </grant> </jazn-policy> </application> </applications> </policy-store>
If you do not want to use the individual permissions, such as AddRulePermission
or DeleteRulePermission
, you can set the RulesEditorPermission
in the jazn-data.xml
file to set global permissions.
26.2.5 What You May Need to Know About the Supported Tags of the Rules Editor Component
This section lists the tags and attributes that are supported by the Rules Editor component.
Table 26-1 lists the supported attributes.
Table 26-1 Supported Attributes of the Rules Editor Component
Name | Type | Required | Default Value | Supports EL? | Description |
---|---|---|---|---|---|
|
oracle.bpel.rulesdc .model.interfaces.R uleSetInterface |
yes |
Only EL |
Wrapper around the Rules SDK ruleset object. The user can use the RuleSetModel object supplied as part of the Rules Editor Component. |
|
|
java.lang.String |
no |
oracle.bpel. rulesdc.mode l.impl.RuleM odel |
yes |
Used to customize the default RuleModel. User can extend the RuleModel class to override certain methods. Deprecated. Use 'ifThenPreferences' attribute and override getRuleModel(). |
|
java.lang.String |
no |
oracle.bpel .rulesdc.mo del.impl.Si mpleTestMod el |
yes |
Used to customize the default SimpleTestModel. User can extend the SimpleTestModel class to override certain methods. Deprecated. Use 'ifThenPreferences' attribute and override getSimpleTestModel(). |
|
java.lang.Boolean |
no |
|
yes |
In the "viewOnly" mode user can view the existing rules in the ruleset. If "false", in the "edit" mode, the user is allowed to add new rules and edit existing rules. |
|
java.lang. Boolean |
no |
|
yes |
Deprecated and not used. |
|
java.lang.Boolean |
no |
|
yes |
Deprecated and not used. |
|
|
no |
Locale.getDe fault() |
yes |
Used for Localization. |
|
|
no |
TimeZone.get Default() |
yes |
Used for Localization |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
gets it from the locale |
yes |
If specified, the date style is used in all inputDate components. Example: "yyyy.MM.dd" |
|
|
no |
gets it from the locale |
yes |
If specified, the time style is used in all inutDate components.Example: "HH:mm:ss". |
|
|
no |
|
yes |
Displays the validation panel by default. User can choose to hide this by setting this to false. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
Based on Locale |
yes |
Used to specify the decimal separators. This is used in Number Formatting. If specified, overrides the decimal separator based on locale. |
|
|
no |
Based on Locale |
yes |
Used to specify the grouping separators. This is used in Number Formatting. If specified, overrides the grouping separator based on locale. |
|
|
no |
|
yes |
Disables verbalization UI if 'true'. |
|
|
no |
|
yes |
Used to specify if validation panel should be collapsed by default. |
|
|
no |
- |
yes |
Used to specify the validation panel title. |
|
|
yes |
|
yes |
If 'true', the generic add action menu is displayed in the decision table tool bar. If 'false' consumer must specify the add action menu using 'dtAddActionMenuDDC' attribute. Deprecated. Use 'dtPreferences' attribute and override isGenericDTAddActionMenu(). |
|
|
no |
|
yes |
If 'true', generic action UI is displayed in the action editor browser that shows up when an action row is edited in the decision table. If 'false' consumer must specify the edit action UI using the 'dtEditActionDDC' attribute. Deprecated. Use 'dtPreferences' attribute and override isGenericDTEditAction(). |
|
|
no |
|
yes |
If 'true', generic UI is displayed in the action parameter cell of the decision table. If 'false', consumer must specify the action parameter cell UI using the 'dtActionParamCellDDC' attribute. Deprecated. Use 'dtPreferences' attribute and override isGenericDTActionParam(). |
|
j |
no |
- |
yes |
Used only when 'genericDTAddActionMenu' is true. Consumer must pass the DDC (i.e the dynamic declarative component) including the context path that specifies the add menu items in the decision table toolbar. Example "/userulesdc/decisiontable/dtAddActionMenu.jsff". Deprecated. Use 'dtPreferences' attribute and override getDtAddActionMenuDDC().. |
|
|
no |
- |
yes |
Used only when 'genericDTEditAction' is true. Consumer must pass the DDC (i.e the dynamic declarative component) including the context path that specifies the action UI to be displayed in the action editor browser that shows up when an action row is edited in the decision table. Example "/userulesdc/decisiontable/actionEditor.jsff". Deprecated. Use 'dtPreferences' attribute and override getDtEditActionDDC(). |
|
|
no |
- |
yes |
Used only when 'genericDTActionParam' is true. Consumer must pass the DDC (i.e the dynamic declarative component) including the context path that specifies the UI to be displayed in the action parameter cell of the decision table. Example "/userulesdc/decisiontable/actionParamCell.jsff". Deprecated. Use 'dtPreferences' attribute and override getDtActionParamCellDDC(). |
|
oracle.bpel.rulesdc .model.interfaces.A ctionNameCustomizer |
no |
- |
yes |
Used to specify the action name and action parameter name in the decision table header. Deprecated. Use 'dtPreferences' attribute and override getDtActionNameCustomizer(). |
|
oracle.bpel.rulesdc .model.decisiontabl e.interfaces.Decisi onTablePrefs |
no |
oracle.bpel. rulesdc.mode l.decisionta ble.impl.Dec isionTablePr efsImpl |
yes |
Used to specify decision table preferences. Consumers can extend the default implementation i.e (oracle.bpel.rulesdc.model.decisiontable.impl.DecisionTablePrefsImpl) and override only the required preferences. s. |
|
oracle.bpel.rulesdc .model.interfaces.I fThenPreferences |
no |
oracle.bpel. rulesdc.mode l.impl.IfThe nPreferences Impl |
yes |
Used to specify if validation panel should be collapsed by default. |
|
joracle.bpel.ruless hareddc.model.inter faces.ResourceManag erInterface |
no |
- |
yes |
Used to specify the resource manager for translations UI. Refer to the section on 'translations'. |
|
oracle.bpel.rulessh areddc.model.interf aces.VerbalRuleGoto LinkListener |
no |
- |
yes |
Listener object triggered when 'Goto phrase' link is clicked from the verbal rule. |
26.3 Introduction to the Oracle Business Rules Dictionary Editor Declarative Component
Get an overview of the Oracle Business Rules Dictionary Editor declarative component.
Learn how to create and run an application using the Rules Dictionary Editor component, and then deploy the application. Also get an overview of supported tags and the localization process for the application.
26.3.1 Using the Oracle Business Rules Dictionary Component
Rules Dictionary Editor Component is an ADF Declarative Component that allows editing of Business Rules meta-data artifacts such as Rulesets, Value Sets, Globals, Decision Functions and so on using the Rules SDK2 API.
Rules Dictionary Editor Component must not be confused with the Rules Editor Component which is mainly used to edit Rules inside a specified Ruleset. The Rules Dictionary Component is a composite component that allows editing of Globals, Value sets, Rulesets and so on. The Rules Dictionary Editor Task Flow uses the Rules Dictionary Editor Component.
The Rules Dictionary Editor Component provides the following features:
-
CRUD (create/read/update/delete) operations on rulesets and general rules, verbal rules and decision tables within a ruleset.
-
CRUD (create/read/update/delete) operations on Business Phrases (used in verbalization).
-
CRUD (create/read/update/delete) operations on Value sets.
-
CRUD (create/read/update/delete) operations on Globals/Variables.
-
CRUD (create/read/update/delete) operations on Decision Functions.
-
CRUD (create/read/update/delete) operations on RL and XML Facts and viewing for all other Fact types.
-
View linked dictionaries.
-
Support for user-defined translations.
-
Cut/copy/paste of all dictionary components.
-
Compare and merge different versions of the dictionary (diff/merge support).
-
Export decision tables to Excel.
The Rules Dictionary Editor task flow uses the Rules Dictionary Editor Component to create applications. Typically, you should either use the Rules Dictionary Editor component or the Rules Dictionary Editor task flow, but not both. For more information on the Rules Dictionary Editor task flow, see Introduction to the Oracle Business Rules Dictionary Editor Task Flow.
The Rules Dictionary Editor component enables you to:
-
Edit globals or variables that have the
final
attribute set totrue
by using the Globals Editor, as shown in Figure 26-14.The Globals Editor enables you to create, delete, edit the name, description, value, change value set, change type and make global final. It supports validation of globals.
-
Edits value sets by using the Value Sets Editor as shown in Figure 26-15.
The Value Sets Editor enables you to perform CRUD (create, read, update, and delete) operations on value sets and ranges inside a value set. It also supports validation of value sets.
-
Edit Rulesets, as shown in Figure 26-16.
The Rules Dictionary Editor enables you to edit only rules inside a selected ruleset. It does not allow creation or deletion of rulesets.
-
Edit General Rules, as shown in Figure 26-17.
-
Edit Verbal Rules, as shown in Figure 26-18.
-
Edit Decision Tables, as shown in Figure 26-19.
-
Edit Business Phrases, as shown in Figure 26-20.
-
View Explorer, as shown Figure 26-21.
-
Edit Facts, as shown in Figure 26-22.
-
Edit Decision Functions, as shown in Figure 26-23.
-
Edit Translations, as shown in Figure 26-24.
-
Create and run tests to validate rules, as shown in Figure 26-25.
For more information about these features and tabs, see Designing Business Rules with Oracle Business Process Management.
26.3.2 How to Create and Run a Sample Application by Using the Rules Dictionary Editor Component
This section lists the steps for creating and running a sample application by using the Rules Dictionary Editor Component.
The prerequisite for using the Rules Dictionary Editor Component to create ADF-based web applications is having JDeveloper with SOA installation.The first task is to create a sample application.
To create a sample application by using the Rules Dictionary Editor Component:
-
Open JDeveloper, from the File Menu, select New and then select ADF Fusion Web Application to create a new application as shown in Figure 26-26.
Figure 26-26 Create Fusion Web Application.
Description of "Figure 26-26 Create Fusion Web Application." -
Enter a name for the application in the Application Name field, for example,
UseRuleDictDCApp
and click Next as shown in Figure 26-27.Figure 26-27 Creating a Generic Application
Description of "Figure 26-27 Creating a Generic Application" -
Use the default for everything else.
-
Click Finish.
-
Right click ViewController project and select Project Properties. Select Libraries and Classpath from the menu on the left.
-
Click Add Library.
-
Select Oracle Rules and Oracle Rules Dictionary Component from the Extension List and click OK. This adds the Rules SDK and the Rules ADF component tag libraries to the project as shown in Figure 26-28.
Note:
If the 'Oracle Rules' and 'Oracle Rules Dictionary Component' do not show up in the 'Extension' List, open a SOA/BPM project within jDeveloper to load the required libraries.
-
Click OK once more to come out of Project Properties.
-
-
Click Save All to save the project.
-
Check to make sure all the required tag libraries are added.
-
Right click ViewController project and select Project Properties.
-
Select JSP Tag Libraries from the menu on the left and check if all the tag libraries are added as shown in Figure 26-29.
-
26.3.2.1 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:
26.3.2.2 How to Create .jspx File for the Rules Dictionary Editor Component
The next task is to create the .jspx
file to include the Rules Dictionary Editor Component tag.
To create the .jspx file for the Rules Dictionary Editor Component tag:
26.3.2.3 How to Refer the oracle.rules and the oracle.soa.rules_dict_dc.webapp Shared Libraries
After creating the .jspx
file, you must refer to the oracle.rules
and oracle.soa.rules_dict_dc.webapp
shared libraries from the weblogic-application.xml
file.
To refer to the oracle.rules and the oracle.soa.rules_dict_dc.webapp shared libraries:
-
In JDeveloper from Application Resources select Descriptors and then META-INF. Edit the
weblogic-application.xml
file and add the following lines (this refers to the oracle.rules shared library):<library-ref> <library-name>oracle.rules</library-name> </library-ref>
-
In JDeveloper select File, then New and then Deployment Descriptors.
-
Select Weblogic Deployment Descriptor and then select weblogic.xml from the list.
-
Select version 12.1.2 and click Finish.
-
In weblogic.xml overview mode, select Libraries from the left and add library name as
oracle.soa.rules_dict_dc.webapp
. Example weblogic.xml file:<?xml version = '1.0' encoding = 'UTF-8'?> <weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.5/weblogic-web-app.xsd" xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app"> <library-ref> <library-name>oracle.soa.rules_dict_dc.webapp</library-name> </library-ref> </weblogic-web-app>
-
Click Save All.
Note:
Note that 'oracle.rules' and 'oracle.soa.rules_dict_dc.webapp' shared libraries must be deployed to the embedded WLS server.
-
-
Check to make sure the shared libraries are deployed using the weblogic console of your embedded WLS.
-
Launch WLS console (
http://host:port/console/login/LoginForm.jsp
) and log in. -
Click Deployments and see if oracle.rules and oracle.soa.rules_dict_dc.webapp shared libraries are deployed as shown in Figure 26-32.
-
-
If the shared libraries are not deployed, then follow this process to deploy them manually:
-
To start the WLS embedded server, in JDeveloper select Run and then select Start Server Instance as shown in Figure 26-33.
Skip this if the shared libraries are already deployed.
Note:
WLS embedded server on JDeveloper must be running so that the shared libraries can be deployed.
-
-
To deploy the oracle.rules shared library to WLS:
-
Launch WLS console (
http://host:port/console/login/LoginForm.jsp
) and log in. -
Select Deployments and click Install.
-
Select <SOA_INSTALL>/soa/soa/modules/oracle.rules_11.1.1/rules.jar and then click Next and Finish.
-
-
To deploy the oracle.soa.rules_dict_dc.webapp shared library to WLS:
-
In WLS console, select Deployments, click Install.
-
Select <SOA_INSTALL>/soa/soa/modules/oracle.soa.rules_dict_dc.webapp_11.1.1/oracle.soa.rules_dict_dc.webapp.war.
-
Click Next and then click Finish.
-
Select Install this deployment as a library.
-
Click Finish
-
Now you should see oracle.soa.rules_dict_dc.webapp added to the list of deployments. as shown in Figure 26-32.
-
26.3.2.4 How to Run the Sample Rules Dictionary Editor Application
The last task is running the sample application.
To run the sample Rules Dictionary Editor application:
Figure 26-34 Rules Dictionary Editor Application

Description of "Figure 26-34 Rules Dictionary Editor Application"
26.3.3 How to Deploy a Rules Dictionary Application to a Standalone Oracle WebLogic Server
When you're ready to deploy your application ear file to the stand-alone WLS, follow these steps to make sure everything runs smoothly.
-
Check to make sure the shared libraries are deployed using the weblogic console of your stand-alone WLS.
-
Launch WLS console
http://host:port/console/login/LoginForm.jsp
and log in. -
Click 'Deployments' and see if 'oracle.rules' and 'oracle.soa.rules_dict_dc.webapp' shared libraries are deployed as shown in Figure 26-11.
-
-
If the shared libraries are not deployed, then follow the previous process to deploy the shared libraries manually.
-
In your project that uses the Rule Dictionary Editor Component, include the "Oracle Rules Dictionary Component" in your 'Libraries and Classpath'. This does not deploy these libraries by default, so the jars are not included in your project war file.
-
In the project that is finally deploying (i.e where you create the ear file):
-
Add this to your weblogic-application.xml:
<library-ref> <library-name>oracle.rules</library-name> </library-ref>
-
Add this to weblogic.xml in your project's war file:
<library-ref> <library-name>oracle.soa.rules_dict_dc.webapp</library-name> </library-ref>
-
-
Now you can deploy your ear file in WLS and things should work.
26.3.4 What You May Need to Know About the Supported Attributes of the Rules Dictionary Editor Component
This section lists the attributes that are supported by the Rules Dictionary Editor component.
Table 26-2 lists the supported attributes.
Table 26-2 Supported Rules Dictionary Editor Attributes
Name | Type | Required | Default Value | Supports EL? | Description |
---|---|---|---|---|---|
|
oracle.bpel.ruledict ionarydc.model.inter faces.RuleDictionary Interface |
yes |
- |
Only EL |
Wrapper around the Rules SDK Dictionary object.The user can use the RuleDictionaryModel object supplied as part of the Rules Dictionary Editor Component jar file (adflibRuleDictionaryDC.jar). |
|
|
no |
|
yes |
In the "viewOnly" mode user can view the existing dictionary data but cannot edit. If "false", i.e. the "edit" mode, the user is allowed to edit the dictionary. |
|
|
no |
Locale.getD efault() |
yes |
Used for Localization. |
|
|
no |
TimeZone.ge tDefault() |
yes |
Used for Localization |
|
|
no |
oracle.bpel .rulesdc.mo del.impl.Ru leModel |
yes |
Used to customize the default RuleModel. User can extend the RuleModel class to override certain methods. Deprecated. Use 'rulesEditorPrefs' and override getIfThenPreferences().getRuleModel(). |
|
|
no |
oracle.bpel .rulesdc.mo del.impl.Si mpleTestMod el |
yes |
Used to customize the default SimpleTestModel. User can extend the SimpleTestModel class to override certain methods. Use 'rulesEditorPrefs' and override getIfThenPreferences().getSimpleTestModel(). |
|
|
no |
|
yes |
Switches to the specified tab name (either GLOBALS, FACTS, VALUESETS, LINKS, DESC_FUNCS, DSL_DEFNS, TESTS, TRANSLATIONS or the ruleset name). |
|
|
no |
- |
yes |
Used to specify the ruleset index to be selected by default. If 'selectedRulesetIdx' is specified, it overrides the 'selectedTab' attribute. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
gets it from the locale |
yes |
If specified, the date style is used in all inputDate components. Example: "yyyy.MM.dd". |
|
|
no |
gets it from the locale |
yes |
If specified, the time style is used in all inutDate components.Example: "HH:mm:ss". |
|
|
no |
|
yes |
Displays the validation panel by default. User can choose to hide this by setting this to false. |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used. |
|
java.lang.Boolean |
no |
|
yes |
Deprecated and not used. |
|
|
no |
|
yes |
Deprecated and not used |
|
|
no |
|
yes |
Disables the Decision Function Name in the Decision Function editor pop-up if true. Deprecated. Use 'dfEditorPrefs' and override isDisableDFName(). |
|
|
no |
|
yes |
Displays the decision service name if 'true' in the Decision Function editor pop-up. Note that the service name makes sense only when 'Invoke as rule service' is checked. Deprecated. Use 'dfEditorPrefs' and override isDisplayWSName().. |
|
|
no |
|
yes |
Displays the 'Invoke as rule service' check box in the Decision Function editor pop-up if true. Deprecated. Use 'dfEditorPrefs' and override isDisplayWSCheck(). |
|
|
no |
|
yes |
Disables add, edit and delete operations for the Inputs table in the Decision Function editor pop-up. Deprecated. Use 'dfEditorPrefs' and override isDisableInputOps(). |
|
|
no |
|
yes |
Disables add, edit and delete operations for the Outputs table in the Decision Function editor pop-up. Deprecated. Use 'dfEditorPrefs' and override isDisableOutputOps(). |
|
|
no |
|
yes |
Displays the add decision function button. Deprecated. Use 'dfEditorPrefs' and override isDisableAddDF(). |
|
|
no |
|
yes |
Displays the delete decision function button. Deprecated. Use 'dfEditorPrefs' and override isDisableDeleteDF(). |
|
|
no |
|
yes |
Deprecated and not used. |
|
|
no |
Based on Locale |
yes |
Used to specify the decimal separators. This is used in Number Formatting. If specified, overrides the decimal separator based on locale. |
|
java.lang.Character |
no |
Based on Locale |
yes |
Used to specify the grouping separators. This is used in Number Formatting. If specified, overrides the grouping separator based on locale. |
|
|
no |
|
yes |
Used to specify if validation panel should be collapsed by default. |
|
|
no |
Localized text "Business Rule Validation - Log" |
yes |
Used to specify the validation panel title. |
|
oracle.bpel.rulessha reddc.model.interfac es.ResourceManagerIn terface |
no |
- |
yes |
Used to specify the resource manager for translations UI. Refer to the section on 'translations'. |
|
oracle.bpel.ruledict ionarydc.model.inter faces.RulesEditorPre ferences |
no |
oracle.bpel .ruledictio narydc.mode l.impl.Rule sEditorPref erencesImpl |
yes |
Used to specify the rules editor preferences. Consumers can extend the default implementation i.e (oracle.bpel.ruledictionarydc.model.impl.RulesEditorPreferencesImpl) and override only the required preferences. |
|
oracle.bpel.ruledict ionarydc.model.inter faces.DFEditorPrefer ences |
no |
oracle.bpel .ruledictio narydc.mode l.impl.DFEd itorPrefere ncesImpl |
yes |
Used to specify the decision function editor preferences. Consumers can extend the default implementation i.e (oracle.bpel.ruledictionarydc.model.impl.DFEditorPreferencesImpl) and override only the required preferences. |
|
|
no |
|
yes |
Deprecated and not used. |
|
oracle.bpel.decision funceditordc.listene r.DecisionFuncListen er |
no |
- |
yes |
Used for notification of decision function editor updates. Deprecated. Use 'dfEditorPrefs' and override getDfListener(). |
|
oracle.bpel.ruledict ionarydc.listener.De cisionFuncActionList ener |
no |
- |
yes |
Used for notification when a decision function is added or deleted. Deprecated. Use 'dfEditorPrefs' and override getDfActionListener() |
|
oracle.bpel.decision funceditordc.listene r.DecisionFuncServic eNameCustomizer |
no |
- |
yes |
Used to customize the decision function service name. Deprecated. Use 'dfEditorPrefs' and override getDfServiceNameCustomizer(). |
|
oracle.bpel.ruledict ionarydc.model.inter faces.DictVersionInf o |
no |
- |
yes |
Used in diff/merge to retrieve the list of dictionary versions for comparison. Deprecated. Use 'dfEditorPrefs' and override getDfServiceNameCustomizer(). |
|
oracle.bpel.testedit ordc.interfaces.Test Executor |
no |
- |
yes |
Used for executing test suites, test templates and test cases. |
|
|
no |
|
yes |
If true, the rule testing capability is disabled. |
|
|
no |
|
yes |
If true, the verbalization capability is disabled that is the Business Phrases tab is not displayed and CRUD operations on verbal rules are disabled. |
|
oracle.bpel.ruledict ionarydc.listener.BO UpdateListener |
no |
- |
yes |
Used for synchronizing business objects. |
26.4 Introduction to the Oracle Business Rules Dictionary Editor Task Flow
Get an overview of the Oracle Business Rules Dictionary Editor task flow.
Learn how to create and run an application using the Rules Dictionary Editor task flow, and then deploy the application.
26.4.1 Using the Oracle Business Rules Dictionary Task Flow
The Oracle Rules Dictionary Editor Task Flow is basically a wrapper around the Rules Dictionary Editor declarative component. The task flow is used in ADF-based web applications that require a task flow instead of a declarative component. For more information on the Rules Dictionary Editor component, see Introduction to the Oracle Business Rules Dictionary Editor Declarative Component.
26.4.2 How to Create and Run a Sample Application By Using the Rules Dictionary Editor Task Flow
This section lists the steps for creating and running a sample application by using the Oracle Rules Dictionary Editor task flow.
The prerequisites for using the Oracle Rules Dictionary Editor task flow to create ADF-based web applications is having a running installation of Oracle SOA Suite and Oracle JDeveloper on your computer.
The first task is to create a sample application.
To create a sample application by using the Oracle Rules Dictionary Editor task flow:
-
Open Oracle JDeveloper.
-
From the File menu, select New and then Custom Application to create an application.
-
Enter a name for the application in the Application Name field, for example,
useRuleDictTaskFlowApp
, and click Next as shown in Figure 26-35.Figure 26-35 Creating a Generic Task Flow Application
Description of "Figure 26-35 Creating a Generic Task Flow Application" -
Enter
useRuleDictTaskFlow
in the Project Name field and ensure that ADF Faces is selected in the Project Technologies tab, as shown in Figure 26-36. -
Click Finish to create the project.
-
Right-click the useRuleDictTaskFlow project in the Applications window of Oracle JDeveloper, and select Project Properties to display the Project Properties dialog box.
In the Project Properties dialog box:
-
Select JSP Tag Libraries from the left panel.
-
Click Add and select ADF Faces Components from the Extension list in the Choose Tag Libraries dialog box, and click OK as shown in Figure 26-37.
Figure 26-37 Choosing Tab Libraries for the Task Flow Application
Description of "Figure 26-37 Choosing Tab Libraries for the Task Flow Application" -
Select Libraries and Classpath from the left panel and click Add Library to display the Add Library dialog box.
-
Select Oracle Rules and then Oracle Rules Dictionary Task Flow in the Libraries list and click OK as shown in Figure 26-38. This adds the Rules SDK and the Rules Dictionary Task Flow JARs to the project.
Figure 26-38 Adding the Rules SDK and Rules Dictionary Task Flow
Description of "Figure 26-38 Adding the Rules SDK and Rules Dictionary Task Flow" -
Click OK to close the Project Properties dialog box.
-
-
Click Save All from the Oracle JDeveloper File menu to save the project.
-
Create a Java class that implements the
oracle.integration.console.metadata.model.share.MetadataDetails
interface, which is defined insoaComposerTemplates.jar
. For more information on theMetadataDetails
interface, see The MetadataDetails Interface.The steps are:
-
Open Oracle JDeveloper.
-
From the File menu, select New to display the New Gallery dialog box.
-
In the New Gallery dialog box, select Java under General from the Categories panel. Ensure that Java Class under Items is selected and click OK to display the Create Java Class dialog box.
-
Enter the name of the Java class, for example
MyMetaDataDetails
. -
Add the
MetadataDetails
interface in the Implements box under Optional Attributes, and click OK to create the Java class in your project, as shown in Figure 26-39.Figure 26-39 Creating a Java Class that Implements the MetadataDetails Interface
Description of "Figure 26-39 Creating a Java Class that Implements the MetadataDetails Interface"The following is a sample of the content of the
MyMetaDataDetails.java
file:package useruledicttaskflow; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.UnsupportedEncodingException; import java.io.Writer; import java.net.MalformedURLException; import java.net.URL; import oracle.integration.console.metadata.model.share.MetadataDetails; import oracle.integration.console.metadata.model.share.RelatedMetadataPath; public class MyMetaDataDetails implements MetadataDetails { public MyMetaDataDetails() { super(); } private static final String RULES_FILE1 = "file:///
<path of Rules file>
"; public String getDocument() { URL url = null; try { url = new URL(RULES_FILE1); return readFile(url); } catch (IOException e) { System.err.println(e); } return ""; } public void setDocument(String string) { URL url = null; try { url = new URL(RULES_FILE1); } catch (MalformedURLException e) { System.err.println(e); return; } Writer writer = null; try { //os = new FileWriter(url.getPath()); writer = new OutputStreamWriter(new FileOutputStream(url.getPath()), "UTF-8"); } catch (FileNotFoundException e) { System.err.println(e); return; } catch (IOException e) { System.err.println(e); return; } try { writer.write(string); } catch (IOException e) { System.err.println(e); } finally { if (writer != null) { try { writer.close(); } catch (IOException ioe) { System.err.println(ioe); } } } } private String readFile(URL dictURL) { InputStream is; try { is = dictURL.openStream(); } catch (IOException e) { System.err.println(e); return ""; } BufferedReader reader; try { reader = new BufferedReader(new InputStreamReader(is, "UTF-8")); } catch (UnsupportedEncodingException e) { System.err.println(e); return ""; } String line = null; StringBuilder stringBuilder = new StringBuilder(); String ls = System.getProperty("line.separator"); try { while ((line = reader.readLine()) != null) { stringBuilder.append(line); stringBuilder.append(ls); } } catch (IOException e) { System.err.println(e); return ""; } finally { try { reader.close(); } catch (IOException e) { System.err.println(e); } } return stringBuilder.toString(); } public String getRelatedDocument(RelatedMetadataPath relatedMetadataPath) { String currPath = RULES_FILE1.substring(0, RULES_FILE1.indexOf("oracle/rules")); String relatedDoc = currPath + "oracle/rules/" + relatedMetadataPath.getValue(); URL url = null; try { url = new URL(relatedDoc); return readFile(url); } catch (IOException e) { System.err.println(e); } return ""; } }
-
-
Create a Java class called
MyNLSPreferences
that implements theoracle.integration.console.metadata.model.share.NLSPreferences
interface, which is defined insoaComposerTemplates.jar
.For more information about the NLS Preferences interface, see The NLSPreferences Interface.
The following sample of
MyNLSPreferences.java
implements theNLSPreferences
interface:package useruledicttaskflow; import java.util.Locale; import java.util.TimeZone; import oracle.integration.console.metadata.model.share.NLSPreferences; public class MyNLSPreferences implements NLSPreferences { private static final String DATE_STYLE = "yyyy-MM-dd"; private static final String TIME_STYLE = "HH-mm-ss"; public MyNLSPreferences() { super(); } public Locale getLocale() { return Locale.getDefault(); } public TimeZone getTimeZone() { return TimeZone.getTimeZone("America/Los_Angeles"); } public String getDateFormat() { return DATE_STYLE; } public String getTimeFormat() { return TIME_STYLE; } }
-
Create a managed bean called
MyBean.java
to return the implementation ofMetadataDetails
andNLSPreferences
. It also returns theoracle.integration.console.metadata.model.share.MetadataDetailsMode
object and provides event handlers such astoggleMode()
,saveDictionary()
,saveNoValidateDictionary()
, andvalidate()
.The following is a sample of the
MyBean.java
file:package useruledicttaskflow; import javax.el.ELContext; import javax.el.ExpressionFactory; import javax.el.MethodExpression; import javax.faces.context.FacesContext; import javax.faces.event.PhaseId; import oracle.adf.view.rich.component.rich.fragment.RichRegion; import oracle.integration.console.metadata.model.share.MetadataDetails; import oracle.integration.console.metadata.model.share.MetadataDetailsMode; import oracle.integration.console.metadata.model.share.NLSPreferences; public class MyBean { private MyMetaDataDetails details = null; private MetadataDetailsMode mode = MetadataDetailsMode.VIEW; private RichRegion regionComp; private NLSPreferences nlsPrefs; public MyBean() { super(); } public MetadataDetails getMetaDataDetails() { if (details != null) return details; details = new MyMetaDataDetails(); return details; } public MetadataDetailsMode getDetailsMode() { return mode; } public void toggleMode() { if (mode.equals(MetadataDetailsMode.EDIT)) mode = MetadataDetailsMode.VIEW; else mode = MetadataDetailsMode.EDIT; } public void saveDictionary() { if (regionComp == null) return; FacesContext fc = FacesContext.getCurrentInstance(); ExpressionFactory ef = fc.getApplication().getExpressionFactory(); ELContext elc = fc.getELContext(); MethodExpression me = ef.createMethodExpression(elc, "doMetadataUpdate", String.class, new Class[] { }); regionComp.queueActionEventInRegion(me, null, null, false, -1, -1, PhaseId.ANY_PHASE); } public void saveNoValidateDictionary() { if (regionComp == null) return; FacesContext fc = FacesContext.getCurrentInstance(); ExpressionFactory ef = fc.getApplication().getExpressionFactory(); ELContext elc = fc.getELContext(); MethodExpression me = ef.createMethodExpression(elc, "doNoValidateMetadataUpdate", String.class, new Class[] { }); regionComp.queueActionEventInRegion(me, null, null, false, -1, -1, PhaseId.ANY_PHASE); } public void validate() { if (regionComp == null) return; FacesContext fc = FacesContext.getCurrentInstance(); ExpressionFactory ef = fc.getApplication().getExpressionFactory(); ELContext elc = fc.getELContext(); MethodExpression me = ef.createMethodExpression(elc, "doValidate", String.class, new Class[] { }); regionComp.queueActionEventInRegion(me, null, null, false, -1, -1, PhaseId.ANY_PHASE); } public void setRegionComp(RichRegion regionComp) { this.regionComp = regionComp; } public RichRegion getRegionComp() { return regionComp; } public NLSPreferences getNlsPrefs() { if (nlsPrefs != null) return nlsPrefs; nlsPrefs = new MyNLSPreferences(); return nlsPrefs; } }
-
Open the
faces-config.xml
file in Overview mode and click the + button under Managed Beans to display the Create Managed Bean dialog box. -
Point to
MyBean.java
by enteringMyBean
in the Bean Name field and selectingsession
from the Scope list, as shown in Figure 26-40.Figure 26-40 Specifying the Bean Name and Scope in the Task Flow Application
Description of "Figure 26-40 Specifying the Bean Name and Scope in the Task Flow Application"
26.4.2.1 How to Add a Rule Dictionary Editor Task Flow
The next task is to create the .jspx
file to include the Rules Dictionary Editor component tag.
To add a Rules Dictionary Editor task flow in a .jspx file:
26.4.2.2 How to Edit the pagedef.xml File
After you add the task flow to the .jspx
file, you must edit the useRuleDictTaskFlowPageDef.xml
file. The pagedef.xml
file is created when you drop the Rules Dictionary task flow into the .jspx
page.
The following is a sample of the pagedef.xml
file along with all the parameters that must be passed to the rules dictionary task flow:
<?xml version="1.0" encoding="UTF-8" ?> <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="11.1.1.55.99" id="useRuleDictTaskFlowPageDef" Package="useruledicttaskflow.pageDefs"> <parameters/> <executables> <variableIterator id="variables"/> <taskFlow id="rulesdictflowdefinition1" taskFlowId= "/WEB-INF/rule-dict-flow-definition.xml#rules-dict-flow-definition" activation="deferred" xmlns="http://xmlns.oracle.com/adf/controller/binding"> <parameters> <parameter id="details" value="#{MyBean.metaDataDetails}" xmlns="http://xmlns.oracle.com/adfm/uimodel"/> <parameter id="mode" value="#{MyBean.detailsMode}" xmlns="http://xmlns.oracle.com/adfm/uimodel"/> <parameter id="dtHeight" value="10" xmlns="http://xmlns.oracle.com/adfm/uimodel"/> <parameter id="selectedTab" value="Ruleset_1" xmlns="http://xmlns.oracle.com/adfm/uimodel"/> <parameter id="dtColumnPageSize" value="6" xmlns="http://xmlns.oracle.com/adfm/uimodel"/> <parameter id="nlsPrefs" value="#{MyBean.nlsPrefs}" xmlns="http://xmlns.oracle.com/adfm/uimodel"/> <parameter id="discloseRules" value="true" xmlns="http://xmlns.oracle.com/adfm/uimodel"/> </parameters> </taskFlow> </executables> <bindings/> </pageDefinition
26.4.2.3 How to Refer to oracle.rules and oracle.soa.rules_dict_dc.webapp Shared Libraries
The next task is to refer to the oracle.rules
and oracle.soa.rules_dict_dc.webapp
shared libraries from the weblogic-application.xml
file.
For more information on referring to the shared libraries, see How to Create and Run a Sample Application by Using the Rules Dictionary Editor Component.
26.4.3 How to Deploy a Rules Dictionary Editor Task Flow Application to a Standalone Oracle WebLogic Server
When you are ready to deploy your application EAR file to the standalone Oracle WebLogic Server, perform the following:
-
Launch the Oracle WebLogic Server Administration Console (
http://
host
:
port
/console/login/LoginForm.jsp
). -
Ensure that
oracle.rules
is displayed in the deployments list. -
Ensure that
oracle.soa.rules_dict_dc.webapp
is displayed in the deployments list. -
If this is not displayed, click Install and select the JDEV_INSTALL/jdeveloper/soa/modules/oracle.soa.rules_dict_dc.webapp_11.1.1/oracle.soa.rules_dict_dc.webapp.war file.
-
In the project that has to be deployed (where you create the EAR file):
-
Add the following lines to the
weblogic-application.xml
:<library-ref> <library-name>oracle.rules</library-name> </library-ref>
-
Add the following lines to
weblogic.xml
in the project WAR file:<library-ref> <library-name>oracle.soa.rules_dict_dc.webapp</library-name> </library-ref>
-
Deploy the EAR file in Oracle WebLogic Server.
-
26.5 Localizing the ADF-Based Web Application
You can localize an application that is created using the Rules Editor component, Rules Dictionary Editor component, or Rules Dictionary Editor task flow.
To localize your application:
26.6 Working with Translations
Translations feature supports translation of aliases in Business Rules Web UI.
You can have the aliases according to the locale. You can also edit the translations of aliases for different locales through translation tab or resource editor pop-up in Business Rules Web UI.
26.6.1 Enabling Translations for Consumer of Reusable Rules UI ADF Task Flow Component
To support translation of aliases, the consumers of reusable Rules UI ADF Task Flow component must provide locale specific resource artifacts as additional parameters while calling Rules UI ADF Task Flow. However, these additional parameters are optional and required only if the consumers want to use the enhanced translation support.
The additional parameters are:
property-name: relatedDetails property-class: oracle.integration.console.metadata.model.share.IRelatedMetadataDetails
<taskFlow id="rulesdictflowdefinition1" taskFlowId="/WEB-INF/rule-dict-flow-definition.xml#rules-dict-flow-definition" activation="deferred" Refresh="default" RefreshCondition="${MyBean.refreshReqd}" xmlns="http://xmlns.oracle.com/adf/controller/binding"> <parameter id="relatedDetails" value="#{MyBean.relatedMetadataDetails}"/> </taskflow>
26.6.1.1 Sample Code to Pass an Implementation of IRelatedMetadataDetails
The consumer has to pass an implementation of oracle.integration.console.metadata.model.share.IRelatedMetadataDetails
The implementation of IRelatedMetadataDetails
contains the code for loading the resource bundles from the repository and also for saving the bundles files when user commits any change to rules application.
The consumer should use dictionaryName + "Translations_" + locale.toString() + ".xml"
convention to build the name of the resource bundle file.
public class MyRelatedMetadataDetails implements IRelatedMetadataDetails { private static final Locale[] LOCALES = { Locale.US, Locale.FRENCH }; private static final String RESOURCE_PATH = "file:///C:/scratch/sumit/system/rules/"; private static final String RESOURCE_BASE = "SimpleRule"; public MyRelatedMetadataDetails() { super(); } public String getDocument(IRelatedMetadataPath relatedPath) { String resourceSuffix = relatedPath.getValue(); try { return loadResource(resourceSuffix); } catch (IOException e) { return ""; } } private static String loadResource(String resourceSuffix) throws IOException { FileInputStream fis = null; FileChannel fc = null; try { URL url = new URL(RESOURCE_PATH + RESOURCE_BASE + resourceSuffix); fis = new FileInputStream(url.getFile()); fc = fis.getChannel(); ByteBuffer bb = ByteBuffer.allocate((int)fc.size()); fc.read(bb); bb.rewind(); return Charset.defaultCharset().decode(bb).toString(); } finally { if (fis != null) { fis.close(); } if (fc != null) { fc.close(); } } } public void createDocument(IRelatedMetadataPath relatedPath, String document) { try { storeResource(relatedPath.getValue(), document); } catch (IOException e) { e.printStackTrace(); } } public void saveDocument(IRelatedMetadataPath path, String document) { try { storeResource(path.getValue(), document); } catch (IOException e) { e.printStackTrace(); } } private static void storeResource(String resourceSuffix, String document) throws IOException { FileOutputStream fos = null; FileChannel fc = null; try { URL url = new URL(RESOURCE_PATH + RESOURCE_BASE + resourceSuffix); fos = new FileOutputStream(url.getFile()); fc = fos.getChannel(); ByteBuffer bb = ByteBuffer.allocateDirect(1024); bb.clear(); bb.put(Charset.defaultCharset().encode(document)); bb.flip(); while (bb.hasRemaining()) { fc.write(bb); } } finally { if (fos != null) { fos.close(); } if (fc != null) { fc.close(); } } } public IRelatedMetadataPathFinderFactory getFinderFactory() { return new RelatedMetadataPathFinderFactory(); } public List<IRelatedMetadataPath> getExisting(IRelatedMetadataPathFinder finder) { List<IRelatedMetadataPath> paths = new ArrayList<IRelatedMetadataPath>(); for (Locale locale : LOCALES) { paths.add(RelatedResourceMetadataPath.buildFromLocale(locale)); } return paths; } public class RelatedMetadataPathFinderFactory implements IRelated`MetadataPathFinderFactory { public IRelatedMetadataPathFinder getResourceFinder() { return new RelatedMetadataPathFinder(); } } public class RelatedMetadataPathFinder implements IRelatedMetadataPathFinder { public String getType() { return null; } public IRelatedMetadataPath matches(oracle.integration.console.metadata.model.share.MetadataPath srcPath, oracle.integration.console.metadata.model.share.MetadataPath matchPath) { return null; } } }
26.6.2 Enabling Translations for Consumer of Rules Web UI Application
To support translation of aliases, the consumer of Rules Web UI application must pass an attribute to the Rules Dictionary DC or Rules DC. The attribute is resourceManager
which accepts an instance of type oracle.bpel.rulesshareddc.model.interface.ResourceManagerInterface.java. However, this additional parameters are optional and required only if the consumers want to use the enhanced translation support.
<rddc:ruleDictionaryDC ruleDictModel="#{SomeBean.ruleDictModel1}" id="rddc1" resourceManager="#{SomeBean.resourceManager}"> </rddc:ruleDictionaryDC>
26.6.2.1 Sample Code for Creating an Instance of resourceManager
Implementation of ResourceManagerInterface
is provided as oracle.bpel.rulesshareddc.model.impl.ResourceManager. Consumers may create an instance of ResourceManager and pass it to corresponding UI component.
Note:
The consumer has to load all the saved resource bundles from the repository and should construct a java.util.Map (resourceMap) where java.util.Locale of the resource bundle is kept as key and the content of the resource bundle file as value which is of type java.lang.String.
The consumer should use dictionaryName + "Translations_" + locale.toString() + ".xml"
convention to build the name of the resource bundle file.
The consumer has to save these resource bundles to the repository whenever the user commits any change in the application.
public ResourceManagerInterface getResourceManager() { if (resourceManager == null) { resourceManager = new ResourceManager(loadResources(), ruleDictionary); } return resourceManager; } private Map<Locale, String> loadResources() { Map<Locale, String> resourceMap = new HashMap<Locale, String>(); for (Locale locale : LOCALES) { try { URL url = new URL(RULES_FILE_PATH + "Translations_" + locale.toString() + ".xml"); String content = new Scanner(new File(url.getFile()), "UTF-8").useDelimiter("\\A").next(); resourceMap.put(locale, content); } catch (IOException e) { resourceMap.put(locale, ""); LOG.severe("Failed to load resource:" + e.getMessage()); } } if (!resourceMap.keySet().contains(getLocale())) { resourceMap.put(getLocale(), ""); } return resourceMap; } private void storeResources(Map<Locale, String> resourceMap) { for (Locale locale : resourceMap.keySet()) { try { URL url = new URL(RULES_FILE_PATH + "Translations_" + locale.toString() + ".xml"); BufferedWriter out = new BufferedWriter(new FileWriter(url.getFile())); out.write(resourceMap.get(locale)); out.close(); } catch (IOException e) { LOG.severe("Failed to store resource:" + e.getMessage()); } } }