In the Projects window, expand the Configuration node in the project you want to modify, and then double-click the Best Record file.
The file opens in the NetBeans XML editor.
Scroll to the WeightedCalculator element.
Add and name a new candidate-field element in the WeightedCalculator.
For example:
<WeightedCalculator module-name="WeightedSurvivorCalculator" parser-class= "com.stc.eindex.configurator.impl.WeightedCalculatorConfig"> <candidate-field name="Person.DOB"> </candidate-field> |
Create one or more parameter elements for the new candidate field.
<candidate-field name="Person.DOB"> <parameter> </parameter> <parameter> </parameter> </candidate-field> |
For each new parameter element, define the elements listed in Master Index Weighted Calculator Parameter Elements (Repository).
<candidate-field name="Person.DOB">
<parameter>
<quality>SourceSystem</quality>
<preference>CDI</preference>
<utility>80.0</utility>
</parameter>
<parameter>
<quality>MostRecentModified</quality>
<utility>75.0</utility>
</parameter>
</candidate-field>
|
Save and close the file.