Package org.picketlink.identity.federation.core.wstrust.auth

Examples of org.picketlink.identity.federation.core.wstrust.auth.TokenCallback


    {
        for (Callback callback : callbacks)
        {
            if (callback instanceof TokenCallback)
            {
                final TokenCallback tokenCallback = (TokenCallback) callback;
            for (Object object : authRequest.getCredentials())
            {
                if (object instanceof SamlCredential)
                {
                        try
                        {
                            tokenCallback.setToken(((SamlCredential)object).getAssertionAsElement());
                        }
                        catch (ProcessingException e)
                        {
                            log.error(e.getMessage(), e);
                        }
View Full Code Here

TOP

Related Classes of org.picketlink.identity.federation.core.wstrust.auth.TokenCallback

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.