@Internal
public interface SpacePermissionAccessMapper
 Centralised logic to determine how permissions should be checked, depending on a user's type of access to
 Confluence (see ConfluenceAccessManager).
 
This has become necessary to make sense of logic that was originally duplicated between:
AbstractSpacePermissionManagerHibernateSpacesQueryBuilderHibernatePageDaoHibernateSpacePermissionsFilterDao
Not for use outside core space permission checking.
| Modifier and Type | Method and Description | 
|---|---|
| com.atlassian.fugue.Either<AccessDenied,Set<SpacePermissionSubjectType>> | getPermissionCheckSubjectTypes(@NonNull AccessStatus accessStatus,
                              @NonNull String permissionType)
 Determines the permission subject types that apply for a given user's  AccessStatusand the space
 permission type being checked. | 
com.atlassian.fugue.Either<AccessDenied,Set<SpacePermissionSubjectType>> getPermissionCheckSubjectTypes(@NonNull AccessStatus accessStatus, @NonNull String permissionType)
 Determines the permission subject types that apply for a given user's AccessStatus and the space
 permission type being checked.
 
Examples:
SpacePermission.ADMINISTER_SPACE_PERMISSION, so will be denied
 A result of AccessDenied will be returned if either: the user (may be anonymous) does not have access
 to Confluence OR the given permission type is invalid for the user's AccessStatus.
 
accessStatus - access status for the userpermissionType - the type of SpacePermission being checkedEither.Right containing a NON-EMPTY set of permission subject types that apply for the
 given access status and permission type, or Either.Left if there are no permission subject types that applyCopyright © 2003–2022 Atlassian. All rights reserved.