Package org.jasig.cas.client.authentication

Examples of org.jasig.cas.client.authentication.AuthenticationFilter

Please see AbstractCasFilter for additional properties.

@author Scott Battaglia @author Misagh Moayyed @since 3.0

        return new PropertySourcesPlaceholderConfigurer();
    }

    @Bean
    public Filter casAuthenticationFilter() {
        final AuthenticationFilter authenticationFilter = new AuthenticationFilter();
        authenticationFilter.setCasServerLoginUrl(serverUrlPrefix + "/login");
        authenticationFilter.setServerName(serverName);
        return authenticationFilter;
    }
View Full Code Here

TOP

Related Classes of org.jasig.cas.client.authentication.AuthenticationFilter

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.