<#-- **** Connector provides some of parameters through the class connectorParameters those parameters are stored in FTL file Conf-connector.ftl for later use in some of the data ftl files *** --> <#-- *********************************************** Parameter global ******************** --> <#assign file = JsonUtil.jsonToMap(input)> <#assign projectRP = project> <#assign organisationRP = organisation> <#assign aDateTime = .now> <#noparse><#-- Date of last generation : ${aDateTime}<#noparse> --> <#noparse><#-- /!\ Warning the file is generated, if you modify it manually, do not enable automatic update via the pipeline --> <#noparse><#-- Possible values for SupplyOfTheTrackingNumber parameter : --> <#noparse><#-- 0 : Always empty --> <#noparse><#-- 1 : Always use HARDIS WMS tracking --> <#noparse><#-- 2 : Always use the HU number --> <#noparse><#-- 3 : Use HARDIS WMS tracking if it exists, the HU number otherwise --> <#list file.parameters as parameter> <#switch parameter.type> <#case "string"> <#noparse><#assign ${parameter.name}<#noparse> = "${parameter.value!""}<#noparse>"> <#break> <#case "integer"> <#noparse><#assign ${parameter.name}<#noparse> = ${parameter.value!0}<#noparse>> <#break> <#case "boolean"> <#noparse><#assign ${parameter.name}<#noparse> = ${(parameter.value!false)?c}<#noparse>> <#break> <#default>