INTRODUCTION

Overview (OBDX-Host(FCUBS/FCORE/OBPM) Integration)

This document is intended to outline the integration of OBDX (Oracle Banking Digital Experience) with FCUBS (Oracle FLEXCUBE Universal Banking),FCORE(Oracle FLEXCUBE Core Banking) and OBPM(Oracle Banking Payments).

OBDX is the digital banking solution platform that enables single-view of a customer’s entire banking world.

It ensures that the program is closely aligned to the business strategies identified and provides accelerated path towards realizing business value.

It provides the prerequisite operations to be performed on the customer banking world, which is exposed in the form of REST web service API’s to decouple presentation and service layer. OBDX needs to be integrated with one of core banking systems to retrieve the customer banking details and execute the set of operations on the core banking system as per the service requirement.

OBDX has adapter layer to integrate with core banking operations. It provides a set of adapter specifications (Java Interfaces) which can be implemented for host specific service invocation. Adapter layer decouples the services from core banking operation. Any number of core banking system can be integrated with OBDX by implementing adapter classes, Adapter layer is responsible for mapping service request /response with host specific request and response.

This document exhibits the integration between core system & OBDX including the basic attributes involved in integration process.

OBDX Integration Model

Host Integration Matrix

OBDX Adapter Project Model

Above Integration model depicts the OBDX adapter integration with core banking system, Integration can be accomplished by concrete adapter implementations.

Following model illustrates OBDX adapter specifications and its concrete adapter implementation relationship project model.

Host Integration Matrix

In above model, project com.ofss.digx.extxface contains all the adapter specifications (Java Interface) for external facing adapters. The concrete implementation classes of the adapter interfaces will reside in the host specific adapter implementation project.

Example: To integrate with FCUBS 12.4 core banking system, adapter interfaces should be implemented for host specific service invocation and concrete implementation adapter classes will reside in com.ofss.digx.extxface.ubs124.impl project.

Back