Package org.jasig.cas.support.saml.authentication.principal

Examples of org.jasig.cas.support.saml.authentication.principal.SamlService


            samlResponse.setID(generateId());
            samlResponse.setIssueInstant(DateTime.now().minusSeconds(skewAllowance));
            samlResponse.setVersion(SAMLVersion.VERSION_11);
            samlResponse.setRecipient(serviceId);
            if (service instanceof SamlService) {
                final SamlService samlService = (SamlService) service;

                if (samlService.getRequestID() != null) {
                    samlResponse.setInResponseTo(samlService.getRequestID());
                }
            }
            prepareResponse(samlResponse, model);

            final BasicSAMLMessageContext messageContext = new BasicSAMLMessageContext();
View Full Code Here

TOP

Related Classes of org.jasig.cas.support.saml.authentication.principal.SamlService

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.