* @param groupname The group name of the new group
* @param description The description of this group
*/
public WorkflowGroup createGroup(String groupid, String groupname, String description)
{
WorkflowGroup group = new WorkflowGroupImpl(this, groupid, groupname, description);
synchronized (groups)
{
groups.put(group.getUUID(), group);
}
return (group);
}