Package com.sparc.knappsack.exceptions

Examples of com.sparc.knappsack.exceptions.OpenIDUserNotFoundException


                existingUser = userDetailsDao.findByEmail(attribute.getValues().get(0).toLowerCase());
                break;
            }
        }
        if (existingUser == null) {
            throw new OpenIDUserNotFoundException("User not found for OpenID: " + token.getName(), token);
        } else {
            existingUser.getOpenIdIdentifiers().add(token.getIdentityUrl());
            userService.setDefaultActiveOrganization(existingUser);
            userDetailsDao.update(existingUser);
        }
View Full Code Here

TOP

Related Classes of com.sparc.knappsack.exceptions.OpenIDUserNotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.