Package org.springframework.security.cas

Examples of org.springframework.security.cas.SamlServiceProperties


        }catch(IllegalArgumentException success) {}
    }

    @Test
    public void testGettersSetters() throws Exception {
        ServiceProperties[] sps = {new ServiceProperties(), new SamlServiceProperties()};
        for(ServiceProperties sp : sps) {
            sp.setSendRenew(false);
            assertFalse(sp.isSendRenew());
            sp.setSendRenew(true);
            assertTrue(sp.isSendRenew());
View Full Code Here

TOP

Related Classes of org.springframework.security.cas.SamlServiceProperties

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.