29 lines
720 B
Java
29 lines
720 B
Java
<#-- **** input parameters ***** -->
|
|
<#-- input : message RFX -->
|
|
<#-- project : projectId in ReflexPlatform -->
|
|
<#-- organisation : organisationtId in ReflexPlatform -->
|
|
<#include "HfRpConfig.ftl">
|
|
<#include "ReflexUtils.ftl">
|
|
|
|
<#assign eventRP = JsonUtil.jsonToMap(input)>
|
|
<#assign projectRP = project>
|
|
<#assign organisationRP = organisation>
|
|
|
|
<#-- initialisation map for SegmentationKey and MetaData -->
|
|
<#assign Header_MetaData_Map = {} />
|
|
<#assign SegmentationKeys_Map = {} />
|
|
<#assign Line_MetaData_Map = {} />
|
|
|
|
|
|
<#switch eventRP.event>
|
|
<#case "Created">
|
|
<#assign appointment = eventRP.data />
|
|
|
|
<#stop "Appointment creation event">
|
|
|
|
<#break>
|
|
<#default>
|
|
<#stop >
|
|
</#switch>
|
|
|