UserId userId = Application.get().getUserId();
DocumentId documentId = result.getDocumentId();
String projectName = data.getProjectSettings().getProjectName();
String projectDescription = data.getProjectSettings().getProjectDescription();
ProjectType projectType = data.getProjectSettings().getProjectType();
NewProjectSettings newProjectSettings = new NewProjectSettings(userId, projectName, projectDescription, projectType, documentId);
projectManagerService.createNewProject(newProjectSettings, new AsyncCallback<ProjectDetails>() {
public void onFailure(Throwable caught) {
UIUtil.hideLoadProgessBar();
caught.printStackTrace();