1

If I create a custom configuration parameter using Decision Center > Configure > Installation Settings Wizard > Step 5: Set Configuration Parameters > New ... custom parameter, how can I access that custom parameter key/value using the Decision Center API?

freecouch
  • 233
  • 5
  • 19

1 Answers1

1

Custom parameters can be accessed using the following approach:

ManagerBean managerBean= ManagerBean.getInstance();
IlrSession session = managerBean.getSession();
String value = IlrSettings.getGlobalSetting(session, "key");
6006604
  • 7,577
  • 1
  • 22
  • 30