Package org.springframework.security.config.annotation.web.configurers.AbstractRequestMatcherMappingConfigurer

Examples of org.springframework.security.config.annotation.web.configurers.AbstractRequestMatcherMappingConfigurer.UrlMapping


            throw new IllegalStateException("permitAll only works with HttpSecurity.authorizeUrls()");
        }

        for(String url : urls) {
            if(url != null) {
                configurer.addMapping(0, new UrlMapping(new ExactUrlRequestMatcher(url), SecurityConfig.createList(ExpressionUrlAuthorizationConfigurer.permitAll)));
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.security.config.annotation.web.configurers.AbstractRequestMatcherMappingConfigurer.UrlMapping

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.