Hi,
I've been reading about the Spring Security <sec:authorize tag, all the examples are assuming that you want to hide something if the user is not authorised.
eg
<sec:authorize ifAllGranted="ROLE_SUPERVISOR">
Hello, you are a Supervisor
</sec:authorize>
...but is there a way to show something if you are NOT authorized?
eg
<sec:authorize ifNOTGranted="ROLE_SUPERVISOR">
Go away! You are NOT a Supervisor!
</sec:authorize>
Obviously it would be easy to write my own tag, but wonder if the Spring one provided this functionality?
Thanks
David Bevan



