use of fi.otavanopisto.muikku.plugins.workspace.events.WorkspaceRootFolderCreateEvent in project muikku by otavanopisto.
the class WorkspaceMaterialController method createWorkspaceRootFolder.
/* Root Folder */
public WorkspaceRootFolder createWorkspaceRootFolder(WorkspaceEntity workspaceEntity) {
WorkspaceRootFolder workspaceRootFolder = workspaceRootFolderDAO.create(workspaceEntity);
workspaceRootFolderCreateEvent.fire(new WorkspaceRootFolderCreateEvent(workspaceRootFolder));
return workspaceRootFolder;
}
Aggregations