JsonNode processSubject = JsonConverterUtil.getProperty(PROPERTY_USERTASK_SUBJECT, elementNode);
if(processSubject != null && StringUtils.isNotEmpty(processSubject.asText())) {
TaskSubject taskSubject = FixFlowFactory.eINSTANCE.createTaskSubject();
Expression subjectExpression = FixFlowFactory.eINSTANCE.createExpression();
subjectExpression.setName(processSubject.asText());
subjectExpression.setValue(processSubject.asText());
taskSubject.setExpression(subjectExpression);
taskSubject.setId("TaskSubject_1");
BpmnModelUtil.addExtensionElement(task, FixFlowPackage.Literals.DOCUMENT_ROOT__TASK_SUBJECT, taskSubject);
}