/** @see ISecurityCheck#isAuthenticated() */
 public boolean isAuthenticated() {
   return wrapped.isAuthenticated();
 }
 /**
  * Returns false if the user is authorized and true if the user is not authorized.
  *
  * @see ISecurityCheck#isActionAuthorized(WaspAction)
  */
 public boolean isActionAuthorized(WaspAction action) {
   return !wrapped.isActionAuthorized(action);
 }