XmlElement newXML = XMLUtil.deepClone(originalXML);
Workflow newWorkflow = new Workflow(newXML);
return newWorkflow;
} catch (GraphException e) {
// This should not happen.
throw new XBayaRuntimeException(e);
} catch (XBayaException e) {
// This should not happen.
throw new XBayaRuntimeException(e);
} catch (UtilsException e) {
// This should not happen.
throw new XBayaRuntimeException(e);
}
}