Examples of PostCasAuthenticationFilter


Examples of org.surfnet.oaaas.cas.PostCasAuthenticationFilter

        return casValidationFilter;
    }

    @Bean
    public Filter postCASAuthenticationFilter() {
        final PostCasAuthenticationFilter postCasAuthenticationFilter = new PostCasAuthenticationFilter();
        if (adminList != null) {
            List<String> admins = Arrays.asList(adminList.split(","));
            postCasAuthenticationFilter.setAdmins(admins);
        }
        return postCasAuthenticationFilter;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.