Package com.liferay.portal.security.auth

Examples of com.liferay.portal.security.auth.PrincipalException


  public static void check(PermissionChecker permissionChecker, long groupId,
      String actionId) throws PortalException {

    if (!contains(permissionChecker, groupId, actionId)) {
      throw new PrincipalException();
    }
  }
View Full Code Here


  public static void check(PermissionChecker permissionChecker,
      long entryId, String actionId) throws PortalException,
      SystemException {

    if (!contains(permissionChecker, entryId, actionId)) {
      throw new PrincipalException();
    }
  }
View Full Code Here

  public static void check(PermissionChecker permissionChecker,
      long guestbookId, String actionId) throws PortalException,
      SystemException {

    if (!contains(permissionChecker, guestbookId, actionId)) {
      throw new PrincipalException();
    }
  }
View Full Code Here

TOP

Related Classes of com.liferay.portal.security.auth.PrincipalException

Copyright © 2018 www.massapicom. 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.