public interface AuthorizationProvider
Created by Kevin Sheppard July 19, 2024
Type Params | Return Type | Name and description |
---|---|---|
|
public boolean |
isAuthorized(User user, java.lang.String[] requiredAuthorities) Check if a user has the right role or permission to access this part of the application. |
|
public Result |
unauthorizedResult(Context ctx)
|
Check if a user has the right role or permission to access this part of the application.
user
- The user returned from Context.user.requiredAuthorities
- The value in the relevant Check annotation. The values in this array can represent roles or permissions.