Interface PrincipalSecurityChecker
- All Known Implementing Classes:
DefaultPrincipalSecurityChecker
public interface PrincipalSecurityChecker
Security Checker for authorizing users.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanauthorizePrincipal(org.springframework.security.core.Authentication authentication, String principalUid) Decides whether authenticated user has access to requested resource.
-
Method Details
-
authorizePrincipal
boolean authorizePrincipal(org.springframework.security.core.Authentication authentication, String principalUid) Decides whether authenticated user has access to requested resource.- Parameters:
authentication- is the object that represents the authenticated userprincipalUid- is a Uid of a user whose permissions are being requested- Returns:
- whether authenticated user is allowed to get the resource
-