示例#1
0
 /**
  * Returns true if the user is successfully associated with his openid provider; The {@link
  * OpenIdUser} is persisted if successful.
  */
 public boolean associate(
     OpenIdUser user, HttpServletRequest request, HttpServletResponse response) throws Exception {
   if (_context.getAssociation().associate(user, _context)) {
     _manager.saveUser(user, request, response);
     return true;
   }
   return false;
 }
示例#2
0
 /**
  * Returns true if the user has succeeded authentication on his openid provider; The {@link
  * OpenIdUser} is persisted if successful.
  */
 public boolean verifyAuth(
     OpenIdUser user, HttpServletRequest request, HttpServletResponse response) throws Exception {
   if (_context.getAssociation().verifyAuth(user, getAuthParameters(request), _context)) {
     _listener.onAuthenticate(user, request);
     _manager.saveUser(user, request, response);
     return true;
   }
   return false;
 }
示例#3
0
 /**
  * Returns true if the user is successfully associated and redirected to his openid provider for
  * authentication; The {@link OpenIdUser} is persisted if successful.
  */
 public boolean associateAndAuthenticate(
     OpenIdUser user,
     HttpServletRequest request,
     HttpServletResponse response,
     String trustRoot,
     String realm,
     String returnTo)
     throws Exception {
   return _context.getAssociation().associate(user, _context)
       && authenticate(user, request, response, trustRoot, realm, returnTo);
 }