The system uses pattern inheritance, defined by segments of the class name ending in a hyphen, to map classes to tables when no more specific Database Table instance is defined. For example, if (through a Database Table instance) class MyCo-Finance-Loans maps to a table named Loans, then classes such as MyCo-Finance-Loans-Defaulted are also mapped to Loans.
Settings for the Column Populator utility are entered in the prpcServiceUtils.properties or prpcUtils.properties file. This example shows several ways to configure the file depending on the data that you want to process.
For example, a system contains the following classes.
Data-Insurance- Data-Insurance-Auto- Data-Insurance-Auto-Claims Data-Insurance-Auto-Claims-Accident Data-Insurance-Auto-Claims-Accident-Atfault Data-Insurance-Auto-Claims-Theft- Data-Insurance-Home- Data-Insurance-Home-Inspections Data-Insurance-Life-
To process all auto:
Data-Insurance-Auto
for the expose.includedClasses (prpcServiceUtils) or expose.classes.included (prpcUtils) property.True
for the expose.includeDescendents (prpcServiceUtils) or expose.included.descendent (prpcUtils) property.To process only atfault and inspections:
Data-Insurance-Auto-Claims-Atfault
and Data-Insurance-Home-Inspections
for the expose.includedClasses (prpcServiceUtils) or expose.classes.included (prpcUtils) property, separated by a comma.True
for the expose.includeDescendents (prpcServiceUtils) or expose.included.descendent (prpcUtils) property.To process all claims except theft:
Data-Insurance-Auto-Claims
in the expose.includedClasses (prpcServiceUtils) or expose.classes.included (prpcUtils) property.True
for the expose.includeDescendents (prpcServiceUtils) or expose.included.descendent (prpcUtils) property.Data-Insurance-Auto-Claims-Theft-
for the expose.excludedClasses (prpcServiceUtils) or expose.classes.excluded (prpcUtils) property.