Interface PermissionCheckExemptions

All Known Implementing Classes:
AdminPermissionCheckExemptions

public interface PermissionCheckExemptions
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if the user is exempt from permission checks, otherwise false.
    default boolean
    isExempt(com.atlassian.user.User user)
    Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • isExempt

      boolean isExempt(ConfluenceUser user)
      Returns true if the user is exempt from permission checks, otherwise false. The result of calling this should not be cached, because permission exemptions can change within a single request.
      Since:
      9.5
    • isExempt

      @Deprecated(forRemoval=true, since="9.5") default boolean isExempt(com.atlassian.user.User user)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns true if the user is exempt from permission checks, otherwise false. The result of calling this should not be cached, because permission exemptions can change within a single request.