4.1.3 Registering a Rule Criteria Handler
The Rule Criteria Handler implemented in the step above needs to be registered in the
system. To register make an entry in the table DIGX_FW_CONFIG_ALL_B
as shown in the example query below.
insert into DIGX_FW_CONFIG_ALL_B (PROP_ID, CATEGORY_ID, PROP_VALUE, FACTORY_SHIPPED_FLAG,PROP_COMMENTS,
SUMMARY_TEXT, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATED_DATE,OBJECT_STATUS,OBJECT_VERSION_NUMBER)
values ('<<Rule Criteria Name>>', 'RuleCriteriaHandlerConfig','<<Fully qualified name of the Handler implementation class
created in the step above>>', 'N', 'Specifies the class name of the Handler for rule criteria type <<Rule Criteria Name>>.',
'Specifies the class name of the Handler for rule criteria type <<Rule Criteria Name>>.',
'ofssuser', sysdate, 'ofssuser', sysdate, 'A', 1);
Parent topic: Adding New Rule Criteria