externallinktemplatesweb

This configuration is optional when using the plugin External_Links.

  • Documentation

  • YAML Format

  • XML Format

Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets.
<templates
>
required

This optional configuration allows administrators to configure templates. These templates can use environment variables in the URL definition. This can be useful in scenarios where a server may be different in production versus testing. When this configuration is defined the management center UI for creating new external links will offer these templates as a list when defining a new server for an external link.

<template
<id
>
required

ID of the external link template

xsd:string
</id>
<name
>
required
string

Print name of the external link template

</name>
<url
>
required
string

URL of the external link

</url>
>
optionalmax. unbounded
</template>
</templates>
This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
cadenzaconfig:
  settings:
    externallinktemplatesweb:
      template:
      - id: "text"
        name: "text"
        url: "text"
      - id: "text"
        name: "text"
        url: "text"

Filename: externallinktemplatesweb-config.xml

This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<templates>
  <template>
    <id>text</id>
    <name>text</name>
    <url>text</url>
  </template>
  <template>
    <id>text</id>
    <name>text</name>
    <url>text</url>
  </template>
</templates>