Template of the custom user interface file
You can use the provided template as a base for producing a custom user interface file.
The following template is an XML file to help you create the custom user interface file for your IBM® MQ Appliance. This template conforms to the schema (store:///schemas/dp-user-interface.xsd).
<User-Interface
xmlns="http://www.datapower.com/schemas/user-interface/1.0">
<!-- Markup for the CLI prompt -->
<CustomPrompt>%s</CustomPrompt>
<!-- Markup for custom messages for the GUI -->
<MarkupBanner type="pre-login" foreground-color="red" background-color="blue">
GUI pre-login message
</MarkupBanner>
<MarkupBanner type="post-login" foreground-color="blue" background-color="yellow">
GUI post-login pop up message
</MarkupBanner>
<MarkupBanner type="system-banner" location="header" foreground-color="green"
background-color="red">
GUI system message - header
</MarkupBanner>
<MarkupBanner type="system-banner" location="footer" foreground-color="blue"
background-color="yellow">
GUI system message - footer
</MarkupBanner>
<!-- If the following markup was outside of comments, the file would not
conform to the schema. Cannot define multiple system messages as the
header or footer.
<MarkupBanner type="system-banner">
GUI system message - header and footer
</MarkupBanner>
-->
<!-- Markup for custom messages for the CLI -->
<TextBanner type="pre-login">
CLIe pre-login message
</TextBanner>
<TextBanner type="post-login">
CLI post-login message
</TextBanner>
<TextBanner type="system-banner">
CLI system message
</TextBanner>
</User-Interface>