*
* @return true if the user is already authenticated, false otherwise
*/
protected boolean isAuthenticated()
{
WaspAuthorizationStrategy strategy = (WaspAuthorizationStrategy)Session.get()
.getAuthorizationStrategy();
return strategy.isClassAuthenticated(Application.get().getHomePage());
}