lastModifiedTimestamp = -1;
}
}
private FlowModel parseFlow(Element element) {
FlowModel flow = new FlowModel();
flow.setAbstract(element.getAttribute("abstract"));
flow.setParent(element.getAttribute("parent"));
flow.setStartStateId(element.getAttribute("start-state"));
flow.setAttributes(parseAttributes(element));
flow.setSecured(parseSecured(element));
flow.setPersistenceContext(parsePersistenceContext(element));
flow.setVars(parseVars(element));
flow.setInputs(parseInputs(element));
flow.setOnStartActions(parseOnStartActions(element));
flow.setStates(parseStates(element));
flow.setGlobalTransitions(parseGlobalTransitions(element));
flow.setOnEndActions(parseOnEndActions(element));
flow.setOutputs(parseOutputs(element));
flow.setExceptionHandlers(parseExceptionHandlers(element));
flow.setBeanImports(parseBeanImports(element));
return flow;
}