blob: 525502d018aa1801757914b8c44c48c5c33d672e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8" ?>
<document>
<properties>
<title>Web Context Params</title>
</properties>
<body>
<section name="Summary">
<p>
Below is the list of available web context parameters supported:
</p>
</section>
#if ($baseContent)
$baseContent
#end
<section name="Web Context Parameters">
#set ($webConfigList = ${model.getWebConfigs()})
#foreach( $webConfig in $webConfigList )
#if ($modelIds.contains($webConfig.modelId))
<p>Artifact Id: $webConfig.modelId</p>
#set ($webConfigParamList = ${webConfig.getWebConfigParametersList()})
<table>
<tr>
<th>Name</th>
<th>Default Value</th>
<th>Expected Values</th>
<th>Since</th>
<th>Description</th>
<th>Source Class</th>
</tr>
#foreach( $webConfigParam in $webConfigParamList )
<tr>
<td>$webConfigParam.name</td>
#if ($webConfigParam.defaultValue)
<td>$webConfigParam.defaultValue</td>
#else
<td></td>
#end
#if ($webConfigParam.expectedValues)
<td>$webConfigParam.expectedValues</td>
#else
<td></td>
#end
#if ($webConfigParam.since)
<td>$webConfigParam.since</td>
#else
<td></td>
#end
#if ($webConfigParam.longDescription)
<td>$webConfigParam.longDescription</td>
#else
<td></td>
#end
<td>$webConfigParam.sourceClassName</td>
</tr>
#end
</table>
#end
#end
</section>
</body>
</document>