Package uk.ac.bbsrc.tgac.miso.core.data

Examples of uk.ac.bbsrc.tgac.miso.core.data.Project.userCanRead()


    try {
      User user = securityManager
          .getUserByLoginName(SecurityContextHolder.getContext()
              .getAuthentication().getName());
      Project project = requestManager.getProjectById(projectId);
      if (!project.userCanRead(user)) {
        throw new SecurityException("Permission denied.");
      }
      //return new ModelAndView("/pages/listRequests.jsp", "requests", requestManager.listAllRequests(user, project));
            return null;
    } catch (IOException ex) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.