2.4 Configuring business logic for an event

In OBAPI, for a certain event, either alert can be triggered, or a business logic can be called. To configure a business logic following steps need to be performed.

  • Create a class to write the required business logic and implement com.ofss.fc.domain.ep.entity.action.logic.ILogic interface
  • Override execute (com.ofss.fc.domain.ep.entity.action.IActivityEventAction eventAction, com.ofss.fc.xface.ep.dto.IActivityLog request) method to write the required business logic. Return true if the logic is successfully completed.
  • Make entry in digx_fw_config_all_b with prop_id as ‘<<activity_id>>#<<eventId>>#L’ , category_id as ‘NotificationTrigger’ and prop_value as fully qualified name of above class.