List<org.w3c.dom.Node> actionRoleNodeList = XMLUtil.getNodes(flowNode, "actionRoles/actionRole");
for(org.w3c.dom.Node actionRoleNode : actionRoleNodeList){
UUID actionId = daf.createUUID(XMLUtil.getSingleNodeTextContent(actionRoleNode, "actionId"));
UUID roleId = daf.createUUID(XMLUtil.getSingleNodeTextContent(actionRoleNode, "roleId"));
this.actionRoleSet.add(new ActionRole(actionId, roleId));
}
List<org.w3c.dom.Node> rightNodeList = XMLUtil.getNodes(flowNode, "rights/right");
for(org.w3c.dom.Node rightNode : rightNodeList){
String username = XMLUtil.getSingleNodeTextContent(rightNode, "username");