}
return result;
}
protected ComplexDataType getComplexValueFromModel() {
ComplexDataType result = null;
final CustomProperty property = ExtensionUtil.getCustomProperty(serviceTask, customPropertyId);
if (property != null) {
final ComplexDataType propertyValue = property.getComplexValue();
if (propertyValue != null) {
result = propertyValue;
}
}
return result;