From 294fa3db9d33371b4208741c021ad12e97d509ec Mon Sep 17 00:00:00 2001 From: hongwei Date: Mon, 22 Jun 2020 10:57:11 +0200 Subject: [PATCH] added the Adapter.Stored_Procedure.Intro into glossary --- .../src/main/scala/code/api/util/Glossary.scala | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/obp-api/src/main/scala/code/api/util/Glossary.scala b/obp-api/src/main/scala/code/api/util/Glossary.scala index 77838472f..cb3558873 100644 --- a/obp-api/src/main/scala/code/api/util/Glossary.scala +++ b/obp-api/src/main/scala/code/api/util/Glossary.scala @@ -385,6 +385,23 @@ object Glossary { ) + glossaryItems += GlossaryItem( + title = "Adapter.Stored_Procedure.Intro", + description = + s""" + |## Use Stored_Procedure as an interface between OBP and your Core Banking System (CBS). + | + | + |For an introduction to Stored Procedures see [here](https://en.wikipedia.org/wiki/Stored_procedure) + | + |### Installation Prerequisites + | + | + |* You have OBP-API running and it is connected to a stored procedure related database. + |* Ideally you have API Explorer running (the application serving this page) but its not necessary - you could use any other REST client. + |* You might want to also run API Manager as it makes it easier to grant yourself roles, but its not necessary - you could use the API Explorer / any REST client instead. + |""" + )