Package vn.pyco.tinycms.web.services.internal

Examples of vn.pyco.tinycms.web.services.internal.SecurityCheckerImpl


    public static SecurityChecker buildSecurityChecker(
                                    final AuthenticationManager authenticationManager,
                                    @InjectService("tinyCMSAccessDecisionManager")
                                    final AccessDecisionManager httpRequestAccessDecisionManager)
                                    throws Exception {
        SecurityCheckerImpl checker = new SecurityCheckerImpl();
        checker.setAuthenticationManager(authenticationManager);
        checker.setAccessDecisionManager(httpRequestAccessDecisionManager);
        checker.afterPropertiesSet();
       
        return checker;
    }
View Full Code Here

TOP

Related Classes of vn.pyco.tinycms.web.services.internal.SecurityCheckerImpl

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.