Package com.feth.play.module.pa.providers.openid.exceptions

Examples of com.feth.play.module.pa.providers.openid.exceptions.NoOpenIdAuthException


                final Promise<UserInfo> pu = OpenID.verifiedId();
                return new OpenIdAuthUser(pu.get(getTimeout()));
            } catch (final Throwable t) {
                if (t instanceof OpenIDError) {
                    if (!hasOpenID) {
                        throw new NoOpenIdAuthException(
                                "OpenID endpoint is required");
                    } else {
                        if(((OpenIDError) t).message() != null) {
                            throw new AuthException(((OpenIDError) t).message());
                        } else {
View Full Code Here

TOP

Related Classes of com.feth.play.module.pa.providers.openid.exceptions.NoOpenIdAuthException

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.