Interface Authorization

    • Method Detail

      • match

        boolean match​(AuthorizationContext context)
        this methods verifies whether or not the authorization match the specified context.
        Parameters:
        context - the context.
        Returns:
        true if there's a match.
      • match

        default boolean match​(User user)
        this methods verifies whether or not the authorization match the specified user. Internally a basic context is created with the user and the method delegates to match(AuthorizationContext)
        Parameters:
        user - the user.
        Returns:
        true if there's a match
      • verify

        boolean verify​(Authorization authorization)
        this method verifies whether or not the authorization implies the specified authorization.
        Note that it doesn't always mean an exact match. For instance, in the case of a WildcardPermissionBasedAuthorization, this method may return true even if the permissions are different
        WildcardPermissionBasedAuthorization.create('*').verify(WildcardPermissionBasedAuthorization.create('anypermission')) would return true
        Parameters:
        authorization - the authorization.
        Returns:
        true if implies the argument.