Links

Oracle Health Insurance supports navigational links within or to other applications. A link can be made context specific with the help of parameterization.

The general structure of links component is as described below:

{
    "links": [{
        "label": "reference to boilerplate key",
        "URL" : "reference to system property ohi.ui.httplink.{custom identifier}",
        "parameters":[{
         "name" : "name of the substitution parameter",
          "properties":[{
             "The property on the current resource that contains the value to be substituted into the parameter."
          }]
        }],
        "sequence":
    }]
}

Attribute

Description

label

Refers to boilerplate key.

URL

Refers to a system property ohi.ui.httplink.{custom identifier}. Links on the detail page are parameterised to use the values from the object in the context. A URL is parameterized using substitution parameter within \{\{}}, an example of a parameterized URL is

http://example_external_system.com/documents/{{param0}}

Here, param0 can be substituted with the value from the object.

parameters

The substitution parameters referenced in the URL. This setting is only applicable for view and edit-recursive template.

To substitute the parameter param0 in the above (URL) example with the code of the object the parameter should be setup as:

"parameters":[{
 "name" : "param0",
  "properties":[{
      "name":"code"
  }]
}]

System support referring to properties of the reference properties . Any property (nested) that is referenced in the parameter, must be included in the floorplan. If such a field is not desired to be displayed then can be configured in floorplan with ‘display’ attribute as ‘never’.