![]() ![]() ![]() ![]() ![]() ![]() |
This section describes how to integrate Oracle Entitlements Server with Oracle Enterprise Repository. It includes the following topics:
You can use Oracle Enterprise Repository to manage OES policy data as OER assets. By integrating OER with OES, you can:
Note: | While the OER console allows direct modification of data in an OES policy asset, it is recommended that policy changes first be made in OES and then imported to OER. See Importing/Exporting Policy Asset Data. |
To manage OES policies with OER:
Follow these steps to set the required import/export properties in OER:
The OES Policy asset type must be imported in OER. This asset type defines OES metadata, such as privileges, policy, resources, and resource attributes. Follow these steps:
ales32-admin/data/aler
and select the appropriate Policy Asset Type zip file. Then click Next twice.
ALES 2.6—ales_policy-asset-type.zip
ALES 3.0—ales_policy-asset-type-3.0.0.zip
OES—ales_policy-asset-type-3.2.0.zip
ALES Policy Asset Type
appears in the Type Manager.
The Asset Editor displays OES Policy Assets in the following tabs:
OER maintains version information for its assets. OES Policy Assets use version numbers in the format N.N (1.0, for example). When importing Policy Assets into OER for the first time, the version number is set to 1.0. When you subsequently import the same assets, the version number increments by 1. You can also modify the version number of an asset within OER.
The policyIX utility can perform imports/exports of policy asset data between OES and OER.
PolicyIX makes use of configuration files for imports/exports with OER. For details, see Import/Export Configuration Files.
For more information about policyIX itself, see PolicyIX in the Administration Reference
To export policy assets directly to OER, run policyIX with the -exportToALER
option:
policyIX -exportToALER <config_file>
To export the data to OER using a policy data file:
policyIX -exportToALER <config_file> <file_name>
The structure of policy data files has changed in this release. If <file_name
> was generated by an earlier version of policyIX, perform the following steps to add the necessary information to the file before exporting the data to OER:
To import directly into OES, use the -importFromALER
option:
policyIX -importFromALER <config_file>
This section describes the configuration file used for imports/exports between OER and OES. This file uses XML to specify required OER information.
Note: | Further information about the configuration file used with policyIX, see Import/Export Utilities in the Administration Reference guide. |
<aler_property name="<property_name>" value=”<value>”/>
server_version
—(Required) Server version (2.6 or 3.0)server_url
—(Required) connection URLusername
—(Required) user name for connecting to OERuserPassword
—(Required) user passwordassetName
—(Required) name of the assetassetDescription
—(Optional) Description of the assetimportAssetVersion
—(Required) Asset version to import; valid only if the -importFromALER
option is used in the policyIX command.
Listing 7-1 provides an example of the OER-related elements in the configuration file:
<aler_configuration>
<aler_property name="server_version" value=”3.0”/>
<aler_property name="server_url"
value=http://123.43.32.3546:7101/aler/services/FlashlineRegistry/>
<aler_property name="userName" value="admin"/>
<aler_property name="userPassword" value="tan66kds9"/>
<aler_property name="assetName" value="MyALESPolicy"/>
<aler_property name="assetDescription" value="AnALES Policy asset"/>
<aler_property name="importAssetVersion" value="2"/>
</aler_configuration>
![]() ![]() ![]() |