Package org.springframework.security.saml.log

Examples of org.springframework.security.saml.log.SAMLEmptyLogger


    public void initialize() {
        consumer = createMock(WebSSOProfileConsumer.class);
        provider = new SAMLAuthenticationProvider();
        provider.setConsumer(consumer);
        provider.setForcePrincipalAsString(true);
        provider.setSamlLogger(new SAMLEmptyLogger());
        messageStorage = createMock(SAMLMessageStorage.class);
        nameID = createMock(NameID.class);
        assertion = createMock(Assertion.class);
    }
View Full Code Here

TOP

Related Classes of org.springframework.security.saml.log.SAMLEmptyLogger

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.