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


      PermissionChecker permissionChecker, Location location,
      String actionId)
    throws PortalException {

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

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

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

  public static void check(
      PermissionChecker permissionChecker, Event event, String actionId)
    throws PortalException {

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

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

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

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

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

      PermissionChecker permissionChecker, Location location,
      String actionId)
    throws PortalException {

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

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

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

  public static void check(
      PermissionChecker permissionChecker, Event event, String actionId)
    throws PortalException {

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

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

    if (!contains(permissionChecker, eventId, 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.