Map<String, String> samProps = CastUtils.cast((Map<?, ?>) map
.get(ESBEndpointConstants.REQUEST_SAM_PROPS));
if (samProps != null && eventFeature != null) {
LOG.info("SAM custom properties received: " + samProps);
CustomInfoHandler ciHandler = new CustomInfoHandler();
ciHandler.setCustomInfo(samProps);
eventFeature.setHandler(ciHandler);
}
return processResult(map.get(ESBEndpointConstants.REQUEST_PAYLOAD));
} else {