private String getExecutionNodePropertyValue(ExecutionNode node, String propertyName) { PropertyValue[] propertyValues = node.getPropertyValues(); for (PropertyValue propertyValue : propertyValues) { if (propertyName.equals(propertyValue.getName())) return propertyValue.getValue(); } return null; }