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.
      • 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.