this.description = workflowProcess.getDescription();
Dom4JFPDLSerializer ser = new Dom4JFPDLSerializer();
ByteArrayOutputStream out = new ByteArrayOutputStream();
ser.serialize(workflowProcess, out);
this.processContent = out.toString("utf-8");
} catch (FPDLSerializerException ex) {
Logger.getLogger(WorkflowDefinition.class.getName()).log(Level.SEVERE, null, ex);
throw new RuntimeException(ex.toString());