public List<TProcess> getTProcessesFromBpmnXml(String processDefinitionPath)
throws JAXBException, FileNotFoundException {
Unmarshaller unmarshaller = this.getUnmarshaller();
TDefinitions definition = this.getTDefinitions(unmarshaller, new File(processDefinitionPath));
return getTProcesses(definition);
}